blob: f232bdc4daea6395584f0a1c6169d1f08655089d [file] [log] [blame]
Jan Tattermusch7eb3a762015-05-07 14:26:13 -07001// Generated by the protocol buffer compiler. DO NOT EDIT!
2// source: test.proto
3#region Designer generated code
4
5using System;
6using System.Threading;
7using System.Threading.Tasks;
8using Grpc.Core;
9
10namespace grpc.testing {
11 public static class TestService
12 {
13 static readonly string __ServiceName = "grpc.testing.TestService";
14
15 static readonly Marshaller<Empty> __Marshaller_Empty = Marshallers.Create((arg) => arg.ToByteArray(), Empty.ParseFrom);
16 static readonly Marshaller<SimpleRequest> __Marshaller_SimpleRequest = Marshallers.Create((arg) => arg.ToByteArray(), SimpleRequest.ParseFrom);
17 static readonly Marshaller<SimpleResponse> __Marshaller_SimpleResponse = Marshallers.Create((arg) => arg.ToByteArray(), SimpleResponse.ParseFrom);
18 static readonly Marshaller<StreamingOutputCallRequest> __Marshaller_StreamingOutputCallRequest = Marshallers.Create((arg) => arg.ToByteArray(), StreamingOutputCallRequest.ParseFrom);
19 static readonly Marshaller<StreamingOutputCallResponse> __Marshaller_StreamingOutputCallResponse = Marshallers.Create((arg) => arg.ToByteArray(), StreamingOutputCallResponse.ParseFrom);
20 static readonly Marshaller<StreamingInputCallRequest> __Marshaller_StreamingInputCallRequest = Marshallers.Create((arg) => arg.ToByteArray(), StreamingInputCallRequest.ParseFrom);
21 static readonly Marshaller<StreamingInputCallResponse> __Marshaller_StreamingInputCallResponse = Marshallers.Create((arg) => arg.ToByteArray(), StreamingInputCallResponse.ParseFrom);
22
23 static readonly Method<Empty, Empty> __Method_EmptyCall = new Method<Empty, Empty>(
24 MethodType.Unary,
25 "EmptyCall",
26 __Marshaller_Empty,
27 __Marshaller_Empty);
28
29 static readonly Method<SimpleRequest, SimpleResponse> __Method_UnaryCall = new Method<SimpleRequest, SimpleResponse>(
30 MethodType.Unary,
31 "UnaryCall",
32 __Marshaller_SimpleRequest,
33 __Marshaller_SimpleResponse);
34
35 static readonly Method<StreamingOutputCallRequest, StreamingOutputCallResponse> __Method_StreamingOutputCall = new Method<StreamingOutputCallRequest, StreamingOutputCallResponse>(
36 MethodType.ServerStreaming,
37 "StreamingOutputCall",
38 __Marshaller_StreamingOutputCallRequest,
39 __Marshaller_StreamingOutputCallResponse);
40
41 static readonly Method<StreamingInputCallRequest, StreamingInputCallResponse> __Method_StreamingInputCall = new Method<StreamingInputCallRequest, StreamingInputCallResponse>(
42 MethodType.ClientStreaming,
43 "StreamingInputCall",
44 __Marshaller_StreamingInputCallRequest,
45 __Marshaller_StreamingInputCallResponse);
46
47 static readonly Method<StreamingOutputCallRequest, StreamingOutputCallResponse> __Method_FullDuplexCall = new Method<StreamingOutputCallRequest, StreamingOutputCallResponse>(
48 MethodType.DuplexStreaming,
49 "FullDuplexCall",
50 __Marshaller_StreamingOutputCallRequest,
51 __Marshaller_StreamingOutputCallResponse);
52
53 static readonly Method<StreamingOutputCallRequest, StreamingOutputCallResponse> __Method_HalfDuplexCall = new Method<StreamingOutputCallRequest, StreamingOutputCallResponse>(
54 MethodType.DuplexStreaming,
55 "HalfDuplexCall",
56 __Marshaller_StreamingOutputCallRequest,
57 __Marshaller_StreamingOutputCallResponse);
58
59 // client-side stub interface
60 public interface ITestServiceClient
61 {
62 Empty EmptyCall(Empty request, CancellationToken token = default(CancellationToken));
63 Task<Empty> EmptyCallAsync(Empty request, CancellationToken token = default(CancellationToken));
64 SimpleResponse UnaryCall(SimpleRequest request, CancellationToken token = default(CancellationToken));
65 Task<SimpleResponse> UnaryCallAsync(SimpleRequest request, CancellationToken token = default(CancellationToken));
66 AsyncServerStreamingCall<StreamingOutputCallResponse> StreamingOutputCall(StreamingOutputCallRequest request, CancellationToken token = default(CancellationToken));
67 AsyncClientStreamingCall<StreamingInputCallRequest, StreamingInputCallResponse> StreamingInputCall(CancellationToken token = default(CancellationToken));
68 AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> FullDuplexCall(CancellationToken token = default(CancellationToken));
69 AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> HalfDuplexCall(CancellationToken token = default(CancellationToken));
70 }
71
72 // server-side interface
73 public interface ITestService
74 {
75 Task<Empty> EmptyCall(ServerCallContext context, Empty request);
76 Task<SimpleResponse> UnaryCall(ServerCallContext context, SimpleRequest request);
77 Task StreamingOutputCall(ServerCallContext context, StreamingOutputCallRequest request, IServerStreamWriter<StreamingOutputCallResponse> responseStream);
78 Task<StreamingInputCallResponse> StreamingInputCall(ServerCallContext context, IAsyncStreamReader<StreamingInputCallRequest> requestStream);
79 Task FullDuplexCall(ServerCallContext context, IAsyncStreamReader<StreamingOutputCallRequest> requestStream, IServerStreamWriter<StreamingOutputCallResponse> responseStream);
80 Task HalfDuplexCall(ServerCallContext context, IAsyncStreamReader<StreamingOutputCallRequest> requestStream, IServerStreamWriter<StreamingOutputCallResponse> responseStream);
81 }
82
83 // client stub
84 public class TestServiceClient : AbstractStub<TestServiceClient, StubConfiguration>, ITestServiceClient
85 {
86 public TestServiceClient(Channel channel) : this(channel, StubConfiguration.Default)
87 {
88 }
89 public TestServiceClient(Channel channel, StubConfiguration config) : base(channel, config)
90 {
91 }
92 public Empty EmptyCall(Empty request, CancellationToken token = default(CancellationToken))
93 {
94 var call = CreateCall(__ServiceName, __Method_EmptyCall);
95 return Calls.BlockingUnaryCall(call, request, token);
96 }
97 public Task<Empty> EmptyCallAsync(Empty request, CancellationToken token = default(CancellationToken))
98 {
99 var call = CreateCall(__ServiceName, __Method_EmptyCall);
100 return Calls.AsyncUnaryCall(call, request, token);
101 }
102 public SimpleResponse UnaryCall(SimpleRequest request, CancellationToken token = default(CancellationToken))
103 {
104 var call = CreateCall(__ServiceName, __Method_UnaryCall);
105 return Calls.BlockingUnaryCall(call, request, token);
106 }
107 public Task<SimpleResponse> UnaryCallAsync(SimpleRequest request, CancellationToken token = default(CancellationToken))
108 {
109 var call = CreateCall(__ServiceName, __Method_UnaryCall);
110 return Calls.AsyncUnaryCall(call, request, token);
111 }
112 public AsyncServerStreamingCall<StreamingOutputCallResponse> StreamingOutputCall(StreamingOutputCallRequest request, CancellationToken token = default(CancellationToken))
113 {
114 var call = CreateCall(__ServiceName, __Method_StreamingOutputCall);
115 return Calls.AsyncServerStreamingCall(call, request, token);
116 }
117 public AsyncClientStreamingCall<StreamingInputCallRequest, StreamingInputCallResponse> StreamingInputCall(CancellationToken token = default(CancellationToken))
118 {
119 var call = CreateCall(__ServiceName, __Method_StreamingInputCall);
120 return Calls.AsyncClientStreamingCall(call, token);
121 }
122 public AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> FullDuplexCall(CancellationToken token = default(CancellationToken))
123 {
124 var call = CreateCall(__ServiceName, __Method_FullDuplexCall);
125 return Calls.AsyncDuplexStreamingCall(call, token);
126 }
127 public AsyncDuplexStreamingCall<StreamingOutputCallRequest, StreamingOutputCallResponse> HalfDuplexCall(CancellationToken token = default(CancellationToken))
128 {
129 var call = CreateCall(__ServiceName, __Method_HalfDuplexCall);
130 return Calls.AsyncDuplexStreamingCall(call, token);
131 }
132 }
133
134 // creates service definition that can be registered with a server
135 public static ServerServiceDefinition BindService(ITestService serviceImpl)
136 {
137 return ServerServiceDefinition.CreateBuilder(__ServiceName)
138 .AddMethod(__Method_EmptyCall, serviceImpl.EmptyCall)
139 .AddMethod(__Method_UnaryCall, serviceImpl.UnaryCall)
140 .AddMethod(__Method_StreamingOutputCall, serviceImpl.StreamingOutputCall)
141 .AddMethod(__Method_StreamingInputCall, serviceImpl.StreamingInputCall)
142 .AddMethod(__Method_FullDuplexCall, serviceImpl.FullDuplexCall)
143 .AddMethod(__Method_HalfDuplexCall, serviceImpl.HalfDuplexCall).Build();
144 }
145
146 // creates a new client stub
147 public static ITestServiceClient NewStub(Channel channel)
148 {
149 return new TestServiceClient(channel);
150 }
151
152 // creates a new client stub
153 public static ITestServiceClient NewStub(Channel channel, StubConfiguration config)
154 {
155 return new TestServiceClient(channel, config);
156 }
157 }
158}
159#endregion