コード例 #1
0
ファイル: PuppetCommand.cs プロジェクト: Vasco-jofra/dadstorm
 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
ファイル: WaitCommand.cs プロジェクト: Vasco-jofra/dadstorm
 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
ファイル: StatusCommand.cs プロジェクト: Vasco-jofra/dadstorm
 public StatusCommand(PuppetShell shell) : base(shell, "Status", "Status: make all nodes in the system to print its current status.", true)
 {
 }
コード例 #7
0
ファイル: FileCommand.cs プロジェクト: Vasco-jofra/dadstorm
 public FileCommand(PuppetShell shell) : base(shell, "File", "File FILE_PATH: @TODO.")
 {
 }
コード例 #8
0
ファイル: HelpCommand.cs プロジェクト: Vasco-jofra/dadstorm
 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
ファイル: StartCommand.cs プロジェクト: Vasco-jofra/dadstorm
 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")
 {
 }