コード例 #1
0
 public Task <Empty> EmptyCall(ServerCallContext context, Empty request)
 {
     return(Task.FromResult(Empty.DefaultInstance));
 }
コード例 #2
0
ファイル: TestServiceGrpc.cs プロジェクト: zhangf911/grpc
            public Task <Empty> EmptyCallAsync(Empty request, CancellationToken token = default(CancellationToken))
            {
                var call = new Grpc.Core.Call <Empty, Empty>(emptyCallMethod, channel);

                return(Calls.AsyncUnaryCall(call, request, token));
            }
コード例 #3
0
ファイル: TestServiceGrpc.cs プロジェクト: zhangf911/grpc
            public Empty EmptyCall(Empty request, CancellationToken token = default(CancellationToken))
            {
                var call = new Grpc.Core.Call <Empty, Empty>(emptyCallMethod, channel);

                return(Calls.BlockingUnaryCall(call, request, token));
            }
コード例 #4
0
ファイル: TestServiceImpl.cs プロジェクト: wfarr/grpc
 public void EmptyCall(Empty request, IObserver <Empty> responseObserver)
 {
     responseObserver.OnNext(Empty.DefaultInstance);
     responseObserver.OnCompleted();
 }
コード例 #5
0
            public Task <Empty> EmptyCallAsync(Empty request, CancellationToken token = default(CancellationToken))
            {
                var call = CreateCall(ServiceName, EmptyCallMethod);

                return(Calls.AsyncUnaryCall(call, request, token));
            }
コード例 #6
0
            public Empty EmptyCall(Empty request, CancellationToken token = default(CancellationToken))
            {
                var call = CreateCall(ServiceName, EmptyCallMethod);

                return(Calls.BlockingUnaryCall(call, request, token));
            }