Inheritance: Message
Esempio n. 1
0
 public Response(Command command)
 {
     CommandId = command.Id;
     ReceiverId = command.ReceiverId;
 }
Esempio n. 2
0
 internal void OnCommand(Command command)
 {
     if (Strategy?.Status == StrategyStatus.Running)
         Strategy.EmitCommand(command);
 }
Esempio n. 3
0
 internal virtual void vmethod_39(Command command)
 {
 }
Esempio n. 4
0
 public virtual void OnCommand(Command command)
 {
     // noop
 }