Searched refs:ClientResponseStream (Results 1 – 3 of 3) sorted by relevance
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Internal/ |
D | AsyncCallTest.cs | 387 var responseStream = new ClientResponseStream<string, string>(asyncCall); in ServerStreaming_NoResponse_Success1() 403 var responseStream = new ClientResponseStream<string, string>(asyncCall); in ServerStreaming_NoResponse_Success2() 417 var responseStream = new ClientResponseStream<string, string>(asyncCall); in ServerStreaming_NoResponse_ReadFailure() 430 var responseStream = new ClientResponseStream<string, string>(asyncCall); in ServerStreaming_MoreResponses_Success() 457 var responseStream = new ClientResponseStream<string, string>(asyncCall); in ServerStreaming_RequestSerializationExceptionDoesntLeakResources() 475 var responseStream = new ClientResponseStream<string, string>(asyncCall); in DuplexStreaming_NoRequestNoResponse_Success() 493 var responseStream = new ClientResponseStream<string, string>(asyncCall); in DuplexStreaming_WriteAfterReceivingStatusThrowsRpcException() 511 var responseStream = new ClientResponseStream<string, string>(asyncCall); in DuplexStreaming_CompleteAfterReceivingStatusSuceeds() 527 var responseStream = new ClientResponseStream<string, string>(asyncCall); in DuplexStreaming_WriteFailureThrowsRpcException() 550 var responseStream = new ClientResponseStream<string, string>(asyncCall); in DuplexStreaming_WriteFailureThrowsRpcException2() [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | ClientResponseStream.cs | 26 internal class ClientResponseStream<TRequest, TResponse> : IAsyncStreamReader<TResponse> class 33 public ClientResponseStream(AsyncCall<TRequest, TResponse> call) in ClientResponseStream() method in Grpc.Core.Internal.ClientResponseStream
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | Calls.cs | 80 var responseStream = new ClientResponseStream<TRequest, TResponse>(asyncCall); 118 var responseStream = new ClientResponseStream<TRequest, TResponse>(asyncCall);
|