Home
last modified time | relevance | path

Searched refs:WReqT (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DServerInterceptors.java233 static <OReqT, ORespT, WReqT, WRespT> ServerMethodDefinition<WReqT, WRespT> wrapMethod( in wrapMethod()
235 final MethodDescriptor<WReqT, WRespT> wrappedMethod) { in wrapMethod() argument
236 final ServerCallHandler<WReqT, WRespT> wrappedHandler = wrapHandler( in wrapMethod()
243 private static <OReqT, ORespT, WReqT, WRespT> ServerCallHandler<WReqT, WRespT> wrapHandler( in wrapHandler()
246 final MethodDescriptor<WReqT, WRespT> wrappedMethod) { in wrapHandler() argument
247 return new ServerCallHandler<WReqT, WRespT>() { in wrapHandler()
249 public ServerCall.Listener<WReqT> startCall( in wrapHandler()
250 final ServerCall<WReqT, WRespT> call, in wrapHandler()
255 protected ServerCall<WReqT, WRespT> delegate() { in wrapHandler()
275 return new PartialForwardingServerCallListener<WReqT>() { in wrapHandler()
[all …]
DClientInterceptors.java98 static <WReqT, WRespT> ClientInterceptor wrapClientInterceptor( in wrapClientInterceptor()
100 final Marshaller<WReqT> reqMarshaller, in wrapClientInterceptor()
106 final MethodDescriptor<WReqT, WRespT> wrappedMethod = in wrapClientInterceptor()
108 final ClientCall<WReqT, WRespT> wrappedCall = in wrapClientInterceptor()
131 WReqT wReq = reqMarshaller.parse(bytes); in wrapClientInterceptor()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServerImpl.java547 private <WReqT, WRespT> ServerStreamListener startWrappedCall( in startWrappedCall()
549 ServerMethodDefinition<WReqT, WRespT> methodDef, in startWrappedCall() argument
553 ServerCallImpl<WReqT, WRespT> call = new ServerCallImpl<WReqT, WRespT>( in startWrappedCall()
562 ServerCall.Listener<WReqT> listener = in startWrappedCall()