コード例 #1
0
 public void SomeCommandHandler(SomeCommand command)
 {
     SomeCommandHandlerHasBeenCalled = true;
 }
コード例 #2
0
 public void SomeCommandHandler(SomeCommand command)
 {
     SomeCommandHandlerHasBeenCalled       = true;
     SomeCommandHandlerReceivedSomeCommand = command;
     ReceivedFlag.Set();
 }
コード例 #3
0
 public void AlsoNotAHandler(SomeCommand command)    // not listed in the microservice Interface
 {
     AlsoNotAHandlerHasBeenCalled       = true;
     AlsoNotAHandlerReceivedSomeCommand = command;
     ReceivedFlag.Set();
 }