blob: d45777020374b5f9eded1364d0ecda11d150064f [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.Threading;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080036using System.Threading.Tasks;
37
Jan Tattermuscha5272b62015-04-30 11:56:46 -070038using Grpc.Core.Internal;
39
Jan Tattermusch30868622015-02-19 09:22:33 -080040namespace Grpc.Core
Jan Tattermuscha7608b02015-02-03 17:54:38 -080041{
42 /// <summary>
Jan Tattermuscha5272b62015-04-30 11:56:46 -070043 /// Server-side handler for unary call.
Jan Tattermuscha7608b02015-02-03 17:54:38 -080044 /// </summary>
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070045 public delegate Task<TResponse> UnaryServerMethod<TRequest, TResponse>(TRequest request, ServerCallContext context)
Jan Tattermuschbdb1b482015-05-06 14:46:25 -070046 where TRequest : class
47 where TResponse : class;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080048
Jan Tattermuscha5272b62015-04-30 11:56:46 -070049 /// <summary>
50 /// Server-side handler for client streaming call.
51 /// </summary>
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070052 public delegate Task<TResponse> ClientStreamingServerMethod<TRequest, TResponse>(IAsyncStreamReader<TRequest> requestStream, ServerCallContext context)
Jan Tattermuschbdb1b482015-05-06 14:46:25 -070053 where TRequest : class
54 where TResponse : class;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080055
Jan Tattermuscha5272b62015-04-30 11:56:46 -070056 /// <summary>
57 /// Server-side handler for server streaming call.
58 /// </summary>
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070059 public delegate Task ServerStreamingServerMethod<TRequest, TResponse>(TRequest request, IServerStreamWriter<TResponse> responseStream, ServerCallContext context)
Jan Tattermuschbdb1b482015-05-06 14:46:25 -070060 where TRequest : class
61 where TResponse : class;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080062
Jan Tattermuscha5272b62015-04-30 11:56:46 -070063 /// <summary>
64 /// Server-side handler for bidi streaming call.
65 /// </summary>
Jan Tattermusch25bb2ef2015-07-21 12:15:53 -070066 public delegate Task DuplexStreamingServerMethod<TRequest, TResponse>(IAsyncStreamReader<TRequest> requestStream, IServerStreamWriter<TResponse> responseStream, ServerCallContext context)
Jan Tattermuschbdb1b482015-05-06 14:46:25 -070067 where TRequest : class
68 where TResponse : class;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080069}