blob: 7a479b9a23d8f59de45376261a637533f2041c9b [file] [log] [blame]
Jan Tattermuscha7fff862015-02-13 11:08:08 -08001#region Copyright notice and license
2
Jan Tattermuschaf77b3d2015-02-13 11:22:21 -08003// Copyright 2015, Google Inc.
Jan Tattermuscha7fff862015-02-13 11:08:08 -08004// All rights reserved.
Craig Tiller190d3602015-02-18 09:23:38 -08005//
Jan Tattermuscha7fff862015-02-13 11:08:08 -08006// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
Craig Tiller190d3602015-02-18 09:23:38 -08009//
Jan Tattermuscha7fff862015-02-13 11:08:08 -080010// * Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12// * Redistributions in binary form must reproduce the above
13// copyright notice, this list of conditions and the following disclaimer
14// in the documentation and/or other materials provided with the
15// distribution.
16// * Neither the name of Google Inc. nor the names of its
17// contributors may be used to endorse or promote products derived from
18// this software without specific prior written permission.
Craig Tiller190d3602015-02-18 09:23:38 -080019//
Jan Tattermuscha7fff862015-02-13 11:08:08 -080020// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32#endregion
33
Jan Tattermuscha7608b02015-02-03 17:54:38 -080034using System;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070035using System.Runtime.CompilerServices;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080036using System.Threading.Tasks;
37
Jan Tattermusch30868622015-02-19 09:22:33 -080038namespace Grpc.Core
Jan Tattermuscha7608b02015-02-03 17:54:38 -080039{
40 /// <summary>
Jan Tattermuscha5272b62015-04-30 11:56:46 -070041 /// Return type for server streaming calls.
Jan Tattermuscha7608b02015-02-03 17:54:38 -080042 /// </summary>
Jan Tattermuschbdf2e622015-05-18 15:59:02 -070043 public sealed class AsyncServerStreamingCall<TResponse> : IDisposable
Jan Tattermuscha7608b02015-02-03 17:54:38 -080044 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070045 readonly IAsyncStreamReader<TResponse> responseStream;
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070046 readonly Action disposeAction;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080047
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070048 public AsyncServerStreamingCall(IAsyncStreamReader<TResponse> responseStream, Action disposeAction)
Jan Tattermuscha7608b02015-02-03 17:54:38 -080049 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070050 this.responseStream = responseStream;
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070051 this.disposeAction = disposeAction;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080052 }
53
Jan Tattermuscha5272b62015-04-30 11:56:46 -070054 /// <summary>
Jan Tattermuscha5272b62015-04-30 11:56:46 -070055 /// Async stream to read streaming responses.
56 /// </summary>
57 public IAsyncStreamReader<TResponse> ResponseStream
Jan Tattermuscha7608b02015-02-03 17:54:38 -080058 {
59 get
60 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070061 return responseStream;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080062 }
63 }
Jan Tattermuschbdf2e622015-05-18 15:59:02 -070064
65 /// <summary>
66 /// Provides means to cleanup after the call.
67 /// If the call has already finished normally (response stream has been fully read), doesn't do anything.
68 /// Otherwise, requests cancellation of the call which should terminate all pending async operations associated with the call.
69 /// As a result, all resources being used by the call should be released eventually.
70 /// </summary>
71 public void Dispose()
72 {
Jan Tattermusch2d2652d2015-05-18 16:23:04 -070073 disposeAction.Invoke();
Jan Tattermuschbdf2e622015-05-18 15:59:02 -070074 }
Jan Tattermuscha7608b02015-02-03 17:54:38 -080075 }
76}