示例#1
0
 public ExecutorService(IOrchestrationQueue queue,
                        ILogger <ExecutorService> logger,
                        IOrchestratorImplementation implementation,
                        ActivitySource source)
 {
     this.queue      = queue;
     _logger         = logger;
     _implementation = implementation;
     _source         = source;
 }
 public GrpcOrchestratorTransport(IOrchestratorImplementation implementation, IOrchestrationQueue workQueue)
 {
     this._impl = implementation;
     _workQueue = workQueue;
 }