Searched refs:wrappedMethod (Results 1 – 4 of 4) sorted by relevance
/external/grpc-grpc-java/core/src/main/java/io/grpc/ |
D | ServerInterceptors.java | 235 final MethodDescriptor<WReqT, WRespT> wrappedMethod) { in wrapMethod() argument 239 wrappedMethod); in wrapMethod() 240 return ServerMethodDefinition.create(wrappedMethod, wrappedHandler); in wrapMethod() 246 final MethodDescriptor<WReqT, WRespT> wrappedMethod) { in wrapHandler() argument 262 final WRespT wrappedMessage = wrappedMethod.parseResponse(is); in wrapHandler() 283 final InputStream is = wrappedMethod.streamRequest(message); in wrapHandler()
|
D | InternalServerInterceptors.java | 32 final MethodDescriptor<WrapReqT, WrapRespT> wrappedMethod) { in wrapMethod() argument 33 return ServerInterceptors.wrapMethod(definition, wrappedMethod); in wrapMethod()
|
D | ClientInterceptors.java | 106 final MethodDescriptor<WReqT, WRespT> wrappedMethod = in wrapClientInterceptor() 109 interceptor.interceptCall(wrappedMethod, callOptions, next); in wrapClientInterceptor()
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/ |
D | ServerInterceptorsTest.java | 326 MethodDescriptor<Holder, Holder> wrappedMethod = MethodDescriptor.<Holder, Holder>newBuilder() in typedMarshalledMessages() local 333 new ServiceDescriptor("basic", wrappedMethod)) in typedMarshalledMessages() 334 .addMethod(wrappedMethod, handler2).build(); in typedMarshalledMessages()
|