blob: f59989655ec5a1099b60d08a82781717527c8889 [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;
20using System.Runtime.CompilerServices;
21using System.Threading.Tasks;
22
23namespace Grpc.Core
24{
25 /// <summary>
26 /// Return type for client streaming calls.
27 /// </summary>
Jan Tattermusch12855fc2015-08-24 16:43:23 -070028 /// <typeparam name="TRequest">Request message type for this call.</typeparam>
29 /// <typeparam name="TResponse">Response message type for this call.</typeparam>
Jan Tattermuschbdf2e622015-05-18 15:59:02 -070030 public sealed class AsyncClientStreamingCall<TRequest, TResponse> : IDisposable
Jan Tattermuscha5272b62015-04-30 11:56:46 -070031 {
32 readonly IClientStreamWriter<TRequest> requestStream;
Jan Tattermuscha236ff22015-07-21 12:33:31 -070033 readonly Task<TResponse> responseAsync;
Jan Tattermuschfb34a992015-08-21 10:45:39 -070034 readonly Task<Metadata> responseHeadersAsync;
Jan Tattermusched4b7a72015-07-21 11:46:43 -070035 readonly Func<Status> getStatusFunc;
36 readonly Func<Metadata> getTrailersFunc;
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070037 readonly Action disposeAction;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070038
Mehrdad Afshari4d7f4082017-10-06 14:51:11 -070039 /// <summary>
40 /// Creates a new AsyncClientStreamingCall object with the specified properties.
41 /// </summary>
42 /// <param name="requestStream">Stream of request values.</param>
43 /// <param name="responseAsync">The response of the asynchronous call.</param>
44 /// <param name="responseHeadersAsync">Response headers of the asynchronous call.</param>
45 /// <param name="getStatusFunc">Delegate returning the status of the call.</param>
46 /// <param name="getTrailersFunc">Delegate returning the trailing metadata of the call.</param>
47 /// <param name="disposeAction">Delegate to invoke when Dispose is called on the call object.</param>
48 public AsyncClientStreamingCall(IClientStreamWriter<TRequest> requestStream,
49 Task<TResponse> responseAsync,
50 Task<Metadata> responseHeadersAsync,
51 Func<Status> getStatusFunc,
52 Func<Metadata> getTrailersFunc,
53 Action disposeAction)
Jan Tattermuscha5272b62015-04-30 11:56:46 -070054 {
55 this.requestStream = requestStream;
Jan Tattermuscha236ff22015-07-21 12:33:31 -070056 this.responseAsync = responseAsync;
Jan Tattermuschfb34a992015-08-21 10:45:39 -070057 this.responseHeadersAsync = responseHeadersAsync;
Jan Tattermusched4b7a72015-07-21 11:46:43 -070058 this.getStatusFunc = getStatusFunc;
59 this.getTrailersFunc = getTrailersFunc;
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070060 this.disposeAction = disposeAction;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070061 }
62
63 /// <summary>
Jan Tattermuscha5272b62015-04-30 11:56:46 -070064 /// Asynchronous call result.
65 /// </summary>
Jan Tattermuscha236ff22015-07-21 12:33:31 -070066 public Task<TResponse> ResponseAsync
Jan Tattermuscha5272b62015-04-30 11:56:46 -070067 {
68 get
69 {
Jan Tattermuscha236ff22015-07-21 12:33:31 -070070 return this.responseAsync;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070071 }
72 }
73
74 /// <summary>
Jan Tattermuschfb34a992015-08-21 10:45:39 -070075 /// Asynchronous access to response headers.
76 /// </summary>
77 public Task<Metadata> ResponseHeadersAsync
78 {
79 get
80 {
81 return this.responseHeadersAsync;
82 }
83 }
84
85 /// <summary>
Jan Tattermuscha5272b62015-04-30 11:56:46 -070086 /// Async stream to send streaming requests.
87 /// </summary>
88 public IClientStreamWriter<TRequest> RequestStream
89 {
90 get
91 {
92 return requestStream;
93 }
94 }
95
96 /// <summary>
97 /// Allows awaiting this object directly.
98 /// </summary>
99 /// <returns></returns>
100 public TaskAwaiter<TResponse> GetAwaiter()
101 {
Jan Tattermuscha236ff22015-07-21 12:33:31 -0700102 return responseAsync.GetAwaiter();
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700103 }
Jan Tattermuschbdf2e622015-05-18 15:59:02 -0700104
105 /// <summary>
Jan Tattermusch22504542015-08-17 13:43:12 -0700106 /// Gets the call status if the call has already finished.
107 /// Throws InvalidOperationException otherwise.
108 /// </summary>
109 public Status GetStatus()
110 {
111 return getStatusFunc();
112 }
113
114 /// <summary>
115 /// Gets the call trailing metadata if the call has already finished.
116 /// Throws InvalidOperationException otherwise.
117 /// </summary>
118 public Metadata GetTrailers()
119 {
120 return getTrailersFunc();
121 }
122
123 /// <summary>
Jan Tattermusched4b7a72015-07-21 11:46:43 -0700124 /// Provides means to cleanup after the call.
Jan Tattermuschbdf2e622015-05-18 15:59:02 -0700125 /// If the call has already finished normally (request stream has been completed and call result has been received), doesn't do anything.
126 /// Otherwise, requests cancellation of the call which should terminate all pending async operations associated with the call.
127 /// As a result, all resources being used by the call should be released eventually.
128 /// </summary>
Jan Tattermusch781720f2016-06-03 17:40:28 -0700129 /// <remarks>
130 /// Normally, there is no need for you to dispose the call unless you want to utilize the
131 /// "Cancel" semantics of invoking <c>Dispose</c>.
132 /// </remarks>
Jan Tattermuschbdf2e622015-05-18 15:59:02 -0700133 public void Dispose()
134 {
Jan Tattermusch2d2652d2015-05-18 16:23:04 -0700135 disposeAction.Invoke();
Jan Tattermuschbdf2e622015-05-18 15:59:02 -0700136 }
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700137 }
138}