Пример #1
0
 public PuppetCommand(PuppetShell shell, string name, string usage, bool isAssynchronous = false)
 {
     this.shell           = shell;
     this.name            = name;
     this.usage           = usage;
     this.isAssynchronous = isAssynchronous;
 }
Пример #2
0
 public WaitCommand(PuppetShell shell) : base(shell, "Wait", "Wait <miliseconds>")
 {
 }
Пример #3
0
 public IntervalCommand(PuppetShell shell) : base(shell, "Interval", "Interval OPERATOR_ID X ms: the operator should sleep X milliseconds between consecutive events.", true)
 {
 }
Пример #4
0
 public NewOperatorCommand(PuppetShell shell) : base(shell, "Operator", "Complicated...")
 {
 }
Пример #5
0
 public UnfreezeCommand(PuppetShell shell) : base(shell, "Unfreeze", "Unfreeze OPERATOR_ID REP_ID: a frozen process is back to normal execution. It processes all previous pended messages.", true)
 {
 }
Пример #6
0
 public StatusCommand(PuppetShell shell) : base(shell, "Status", "Status: make all nodes in the system to print its current status.", true)
 {
 }
Пример #7
0
 public FileCommand(PuppetShell shell) : base(shell, "File", "File FILE_PATH: @TODO.")
 {
 }
Пример #8
0
 public HelpCommand(PuppetShell shell) : base(shell, "Help", "Help: helps")
 {
 }
Пример #9
0
 public CrashCommand(PuppetShell shell) : base(shell, "Crash", "Crash OPERATOR_ID REP_ID: force a process, i.e. a replica of an operator, to crash.", true)
 {
 }
Пример #10
0
 public StartCommand(PuppetShell shell) : base(shell, "Start", "Start OPERATOR_ID: tells the OPERATOR_ID operator to start processing tuples.", true)
 {
 }
Пример #11
0
 public LoggingLevelCommand(PuppetShell shell) : base(shell, "LoggingLevel", "LoggingLevel full | light", true)
 {
 }
Пример #12
0
 public FreezeCommand(PuppetShell shell) : base(shell, "Freeze", "Freeze OPERATOR_ID REP_ID: after receiving Freeze, the proecess continues receiving messages but stops processing them.", true)
 {
 }
Пример #13
0
 public SemanticsCommand(PuppetShell shell) : base(shell, "Semantics", "Semantics at-most-once | at-least-once | exactly-once")
 {
 }
Пример #14
0
 public ExitCommand(PuppetShell shell) : base(shell, "Exit", "Exit: Exites the application")
 {
 }