public GrpcClientOrchestrationService(
     IOptions <GrpcClientOrchestrationServiceOptions> options,
     OrchestrationServiceClient client,
     ILogger <GrpcClientOrchestrationSession> logger)
 {
     _options = options.Value;
     _client  = client;
     _logger  = logger;
 }
コード例 #2
0
 public GrpcClientOrchestrationSession(
     GrpcClientOrchestrationServiceOptions options,
     TaskOrchestrationStream stream,
     ILogger logger)
 {
     _options = options;
     _stream  = stream;
     _logger  = logger;
 }