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