blob: 09fbf0b1e8d9d8429171317f6247e9d4c5e11f1a [file] [log] [blame]
Jan Tattermusch8496efa2016-03-22 11:34:09 -07001#region Copyright notice and license
2
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003// Copyright 2015-2016 gRPC authors.
Jan Tattermusch8496efa2016-03-22 11:34:09 -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 Tattermusch8496efa2016-03-22 11:34:09 -07008//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009// http://www.apache.org/licenses/LICENSE-2.0
Jan Tattermusch8496efa2016-03-22 11:34:09 -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 Tattermusch8496efa2016-03-22 11:34:09 -070016
17#endregion
18
19using System.Threading.Tasks;
20using Grpc.Core.Internal;
21
22namespace Grpc.Core
23{
24 /// <summary>
25 /// Abstraction of client-side RPC invocation.
26 /// </summary>
27 /// <seealso cref="Calls"/>
28 public abstract class CallInvoker
29 {
30 /// <summary>
31 /// Invokes a simple remote call in a blocking fashion.
32 /// </summary>
Jan Tattermuschb455bcc2016-03-22 16:08:18 -070033 public abstract TResponse BlockingUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse> method, string host, CallOptions options, TRequest request)
Jan Tattermusch8496efa2016-03-22 11:34:09 -070034 where TRequest : class
35 where TResponse : class;
36
37 /// <summary>
38 /// Invokes a simple remote call asynchronously.
39 /// </summary>
Jan Tattermuschb455bcc2016-03-22 16:08:18 -070040 public abstract AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>(Method<TRequest, TResponse> method, string host, CallOptions options, TRequest request)
Jan Tattermusch8496efa2016-03-22 11:34:09 -070041 where TRequest : class
42 where TResponse : class;
43
44 /// <summary>
45 /// Invokes a server streaming call asynchronously.
46 /// In server streaming scenario, client sends on request and server responds with a stream of responses.
47 /// </summary>
Jan Tattermuschb455bcc2016-03-22 16:08:18 -070048 public abstract AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse> method, string host, CallOptions options, TRequest request)
Jan Tattermusch8496efa2016-03-22 11:34:09 -070049 where TRequest : class
50 where TResponse : class;
51
52 /// <summary>
53 /// Invokes a client streaming call asynchronously.
54 /// In client streaming scenario, client sends a stream of requests and server responds with a single response.
55 /// </summary>
Jan Tattermuschb455bcc2016-03-22 16:08:18 -070056 public abstract AsyncClientStreamingCall<TRequest, TResponse> AsyncClientStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse> method, string host, CallOptions options)
Jan Tattermusch8496efa2016-03-22 11:34:09 -070057 where TRequest : class
58 where TResponse : class;
59
60 /// <summary>
61 /// Invokes a duplex streaming call asynchronously.
62 /// In duplex streaming scenario, client sends a stream of requests and server responds with a stream of responses.
63 /// The response stream is completely independent and both side can be sending messages at the same time.
64 /// </summary>
Jan Tattermuschb455bcc2016-03-22 16:08:18 -070065 public abstract AsyncDuplexStreamingCall<TRequest, TResponse> AsyncDuplexStreamingCall<TRequest, TResponse>(Method<TRequest, TResponse> method, string host, CallOptions options)
Jan Tattermusch8496efa2016-03-22 11:34:09 -070066 where TRequest : class
67 where TResponse : class;
68 }
69}