blob: 1cb1a918595bf1743502f3a491ab315f0bb05725 [file] [log] [blame]
Jan Tattermuscha5272b62015-04-30 11:56:46 -07001#region Copyright notice and license
2
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003// Copyright 2015 gRPC authors.
Jan Tattermuscha5272b62015-04-30 11:56:46 -07004//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
Jan Tattermuscha5272b62015-04-30 11:56:46 -07008//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009// http://www.apache.org/licenses/LICENSE-2.0
Jan Tattermuscha5272b62015-04-30 11:56:46 -070010//
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
Jan Tattermuscha5272b62015-04-30 11:56:46 -070016
17#endregion
18
19using System;
Jan Tattermusch4c25efa2015-08-21 16:07:57 -070020using System.Threading.Tasks;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070021
22namespace Grpc.Core
23{
24 /// <summary>
25 /// Return type for bidirectional streaming calls.
26 /// </summary>
Jan Tattermusch12855fc2015-08-24 16:43:23 -070027 /// <typeparam name="TRequest">Request message type for this call.</typeparam>
28 /// <typeparam name="TResponse">Response message type for this call.</typeparam>
Jan Tattermuschbdf2e622015-05-18 15:59:02 -070029 public sealed class AsyncDuplexStreamingCall<TRequest, TResponse> : IDisposable
Jan Tattermuscha5272b62015-04-30 11:56:46 -070030 {
31 readonly IClientStreamWriter<TRequest> requestStream;
32 readonly IAsyncStreamReader<TResponse> responseStream;
Jan Tattermusch4c25efa2015-08-21 16:07:57 -070033 readonly Task<Metadata> responseHeadersAsync;
Jan Tattermusched4b7a72015-07-21 11:46:43 -070034 readonly Func<Status> getStatusFunc;
35 readonly Func<Metadata> getTrailersFunc;
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070036 readonly Action disposeAction;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070037
Mehrdad Afshari4d7f4082017-10-06 14:51:11 -070038 /// <summary>
39 /// Creates a new AsyncDuplexStreamingCall object with the specified properties.
40 /// </summary>
41 /// <param name="requestStream">Stream of request values.</param>
42 /// <param name="responseStream">Stream of response values.</param>
43 /// <param name="responseHeadersAsync">Response headers of the asynchronous call.</param>
44 /// <param name="getStatusFunc">Delegate returning the status of the call.</param>
45 /// <param name="getTrailersFunc">Delegate returning the trailing metadata of the call.</param>
46 /// <param name="disposeAction">Delegate to invoke when Dispose is called on the call object.</param>
47 public AsyncDuplexStreamingCall(IClientStreamWriter<TRequest> requestStream,
48 IAsyncStreamReader<TResponse> responseStream,
49 Task<Metadata> responseHeadersAsync,
50 Func<Status> getStatusFunc,
51 Func<Metadata> getTrailersFunc,
52 Action disposeAction)
Jan Tattermuscha5272b62015-04-30 11:56:46 -070053 {
54 this.requestStream = requestStream;
55 this.responseStream = responseStream;
Jan Tattermusch4c25efa2015-08-21 16:07:57 -070056 this.responseHeadersAsync = responseHeadersAsync;
Jan Tattermusched4b7a72015-07-21 11:46:43 -070057 this.getStatusFunc = getStatusFunc;
58 this.getTrailersFunc = getTrailersFunc;
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070059 this.disposeAction = disposeAction;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070060 }
61
62 /// <summary>
Jan Tattermuscha5272b62015-04-30 11:56:46 -070063 /// Async stream to read streaming responses.
64 /// </summary>
65 public IAsyncStreamReader<TResponse> ResponseStream
66 {
67 get
68 {
69 return responseStream;
70 }
71 }
72
73 /// <summary>
74 /// Async stream to send streaming requests.
75 /// </summary>
76 public IClientStreamWriter<TRequest> RequestStream
77 {
78 get
79 {
80 return requestStream;
81 }
82 }
Jan Tattermuschbdf2e622015-05-18 15:59:02 -070083
84 /// <summary>
Jan Tattermusch4c25efa2015-08-21 16:07:57 -070085 /// Asynchronous access to response headers.
86 /// </summary>
87 public Task<Metadata> ResponseHeadersAsync
88 {
89 get
90 {
91 return this.responseHeadersAsync;
92 }
93 }
94
95 /// <summary>
Jan Tattermusched4b7a72015-07-21 11:46:43 -070096 /// Gets the call status if the call has already finished.
97 /// Throws InvalidOperationException otherwise.
98 /// </summary>
99 public Status GetStatus()
100 {
101 return getStatusFunc();
102 }
103
104 /// <summary>
105 /// Gets the call trailing metadata if the call has already finished.
106 /// Throws InvalidOperationException otherwise.
107 /// </summary>
108 public Metadata GetTrailers()
109 {
110 return getTrailersFunc();
111 }
112
113 /// <summary>
Jan Tattermuschbdf2e622015-05-18 15:59:02 -0700114 /// Provides means to cleanup after the call.
115 /// If the call has already finished normally (request stream has been completed and response stream has been fully read), doesn't do anything.
116 /// Otherwise, requests cancellation of the call which should terminate all pending async operations associated with the call.
117 /// As a result, all resources being used by the call should be released eventually.
118 /// </summary>
Jan Tattermusch6acc07d2016-06-03 17:03:30 -0700119 /// <remarks>
120 /// Normally, there is no need for you to dispose the call unless you want to utilize the
121 /// "Cancel" semantics of invoking <c>Dispose</c>.
122 /// </remarks>
Jan Tattermuschbdf2e622015-05-18 15:59:02 -0700123 public void Dispose()
124 {
Jan Tattermusch2d2652d2015-05-18 16:23:04 -0700125 disposeAction.Invoke();
Jan Tattermuschbdf2e622015-05-18 15:59:02 -0700126 }
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700127 }
128}