Beispiel #1
0
 public DefaultCommandService(
     ICommandQueueRouter commandQueueRouter,
     ICommandAsyncResultManager commandAsyncResultManager)
 {
     _commandQueueRouter = commandQueueRouter;
     _commandAsyncResultManager = commandAsyncResultManager;
 }
Beispiel #2
0
 public DefaultCommandService(
     ICommandQueueRouter commandQueueRouter,
     IProcessingCommandCache processingCommandCache,
     ICommandAsyncResultManager commandAsyncResultManager)
 {
     _commandQueueRouter = commandQueueRouter;
     _processingCommandCache = processingCommandCache;
     _commandAsyncResultManager = commandAsyncResultManager;
 }
Beispiel #3
0
 /// <summary>Parameterized constructor.
 /// </summary>
 /// <param name="commandQueueRouter"></param>
 /// <param name="commandAsyncResultManager"></param>
 public DefaultCommandService(ICommandQueueRouter commandQueueRouter, ICommandAsyncResultManager commandAsyncResultManager)
 {
     _commandQueueRouter        = commandQueueRouter;
     _commandAsyncResultManager = commandAsyncResultManager;
 }