Esempio n. 1
0
        public override ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine(base.Help().Message);
            help.AppendLine(ConsoleFormatting.FixedLength("CreateQueue queueName queueType",
                                                          "Creates the initial queue in memory. 0=POCO, 1=Linq Expression"));
            help.AppendLine(ConsoleFormatting.FixedLength("EnableSerilog",
                                                          "Uses serilog for logging to console; note that this example only works when the worker library is compiled in release mode; this is an example limitation, not a library limitation"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetWorkerConfiguration queueName",
                                                          "Worker configuration options"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetHeartBeatConfiguration queueName",
                                                          "HeartBeat configuration options"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetMessageExpirationConfiguration queueName",
                                                          "Message Expiration configuration options"));

            help.AppendLine(ConsoleFormatting.FixedLength("SetFatalExceptionDelayBehavior queueName",
                                                          "Back off times for when fatal errors occur"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetQueueDelayBehavior queueName",
                                                          "Back off times for when the queue is empty"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetQueueRetryBehavior queueName",
                                                          "Retry strategy, based on the type of the exception"));

            help.AppendLine(ConsoleFormatting.FixedLength("StartQueue queueName", "Starts a queue"));
            help.AppendLine(ConsoleFormatting.FixedLength("StopQueue queueName",
                                                          "Stops a queue; configuration will be reset"));
            return(new ConsoleExecuteResult(help.ToString()));
        }
        public ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine("");
            help.AppendLine(ConsoleFormatting.FixedLength("CreateQueue queueName", "Creates the queue in the transport"));
            help.AppendLine(ConsoleFormatting.FixedLength("RemoveQueue queueName", "Removes the queue from the transport"));

            help.AppendLine("Queue options (set before CreateQueue)");
            help.AppendLine("");

            help.AppendLine(ConsoleFormatting.FixedLength("SetQueueType queueName", "Type of the queue; needed for Rpc. 1=NotRpc,2=sendRpc,3=receiveRpc"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetDelayedProcessing queueName", "Enables/Disables delayed processing"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetHeartBeat queueName", "Enables/Disables heart beat support"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetMessageExpiration queueName", "Enables/Disables message expiration"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetPriority queueName", "Enables/Disables message priority"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetStatus queueName", "Enables/Disables using a status column to flag pending/working items"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetStatusTable queueName", "Enables/Disables a separate status tracking table for external code to query"));
            help.AppendLine("");
            help.AppendLine(ConsoleFormatting.FixedLength("AddColumn queueName", "Adds a new user column to the status table"));
            help.AppendLine(ConsoleFormatting.FixedLength("AddColumnWithLength queueName", "Adds a new user column to the status table"));
            help.AppendLine(ConsoleFormatting.FixedLength("AddColumnWithPrecision queueName", "Adds a new user column to the status table"));
            help.AppendLine(ConsoleFormatting.FixedLength("AddConstraint queueName", "Adds a new user constraint to the status table"));
            help.AppendLine(ConsoleFormatting.FixedLength("AddConstraintManyColumns queueName", "Adds a new user constraint to the status table"));
            help.AppendLine("");
            return(new ConsoleExecuteResult(help.ToString()));
        }
Esempio n. 3
0
        public ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine(ConsoleFormatting.FixedLength("RemoveQueue queueName", "Removes the queue from the transport"));
            return(new ConsoleExecuteResult(help.ToString()));
        }
        public override ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine(base.Help().Message);

            help.AppendLine(ConsoleFormatting.FixedLength("SetTaskSchedulerConfiguration",
                                                          "Task scheduler configuration options"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetWorkerConfiguration queueName",
                                                          "Worker configuration options"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetHeartBeatConfiguration queueName",
                                                          "HeartBeat configuration options"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetMessageExpirationConfiguration queueName",
                                                          "Message Expiration configuration options"));

            help.AppendLine(ConsoleFormatting.FixedLength("SetFatalExceptionDelayBehavior queueName",
                                                          "Back off times for when fatal errors occur"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetQueueDelayBehavior queueName",
                                                          "Back off times for when the queue is empty"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetQueueRetryBehavior queueName",
                                                          "Retry strategy, based on the type of the exception"));

            help.AppendLine(ConsoleFormatting.FixedLength("CreateQueue queueName queueType",
                                                          "Creates the initial queue in memory. 0=POCO, 1=Linq Expression"));
            help.AppendLine(ConsoleFormatting.FixedLength("StartQueue queueName", "Starts a queue"));
            help.AppendLine(ConsoleFormatting.FixedLength("StopQueue queueName",
                                                          "Stops a queue; configuration will be reset"));
            return(new ConsoleExecuteResult(help.ToString()));
        }
        public override ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.Append(base.Help().Message);
            help.AppendLine(ConsoleFormatting.FixedLength("Send queueName", "Sends messages"));
            help.AppendLine(ConsoleFormatting.FixedLength("SendAsync queueName", "Sends messages async"));
            return(new ConsoleExecuteResult(help.ToString()));
        }
Esempio n. 6
0
        public override ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine(base.Help().Message);
            help.AppendLine(ConsoleFormatting.FixedLength("SetRedisOptions queueName", "Sets redis transport specific options"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetTimeClientOptions queueName", "Options for obtaining the current time. 0=localmachine,1=redisServer,2=NTP"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetMessageIdOptions queueName", "Message ID generation. 0=redis,1=uuid"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetSntpTimeConfiguration queueName", "Options for the NTP client"));
            return(new ConsoleExecuteResult(help.ToString()));
        }
        public virtual ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine("");
            help.AppendLine("-The following should be enabled before performing queue actions; usage is optional-");
            help.AppendLine(ConsoleFormatting.FixedLength("EnableStatus uri", "Enables the status HTTP server"));
            help.AppendLine(ConsoleFormatting.FixedLength("EnableMetrics uri [performanceCounters]",
                                                          "Enables queue metrics"));
            help.AppendLine(ConsoleFormatting.FixedLength("EnableGzip", "Enables the Gzip message interceptor"));
            help.AppendLine(ConsoleFormatting.FixedLength("EnableDes [key] [iv]",
                                                          "Enables Triple DES message interceptor; key/iv must be base64 strings"));
            help.AppendLine("");
            return(new ConsoleExecuteResult(help.ToString()));
        }
        public ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine("Default commands are");
            help.AppendLine("");
            help.AppendLine(ConsoleFormatting.FixedLength("Help", "Displays command list"));
            help.AppendLine(ConsoleFormatting.FixedLength("Example name", "Displays example syntax for a command"));
            help.AppendLine(ConsoleFormatting.FixedLength("StartMacro", "Starts capturing a new macro"));
            help.AppendLine(ConsoleFormatting.FixedLength("CancelMacro", "Cancels capture of a macro started with 'StartMacro'"));
            help.AppendLine(ConsoleFormatting.FixedLength("SaveMacro Name", "Saves a macro started with 'StartMacro' to the indicated file"));
            help.AppendLine(ConsoleFormatting.FixedLength("RunMacro Name", "Runs the macro"));
            help.AppendLine(ConsoleFormatting.FixedLength("Quit", "Exits the application"));
            help.AppendLine("");
            help.AppendLine("To get help for other name spaces, use <namespace>.Help");
            return(new ConsoleExecuteResult(help.ToString()));
        }
Esempio n. 9
0
        public ConsoleExecuteResult Help()
        {
            var help = new StringBuilder();

            help.AppendLine("");
            help.AppendLine(ConsoleFormatting.FixedLength("CreateQueue queueName", "Creates the queue in the transport"));
            help.AppendLine(ConsoleFormatting.FixedLength("RemoveQueue queueName", "Removes the queue from the transport"));

            help.AppendLine("Queue options (set before CreateQueue)");
            help.AppendLine("");

            help.AppendLine(ConsoleFormatting.FixedLength("SetQueueType queueName", "Type of the queue; needed for Rpc. 1=NotRpc,2=sendRpc,3=receiveRpc"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetDelayedProcessing queueName", "Enables/Disables delayed processing"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetHeartBeat queueName", "Enables/Disables heart beat support"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetMessageExpiration queueName", "Enables/Disables message expiration"));
            help.AppendLine(ConsoleFormatting.FixedLength("SetStatusTable queueName", "Enables/Disables a separate status tracking table for external code to query"));
            help.AppendLine("");
            return(new ConsoleExecuteResult(help.ToString()));
        }