Searched refs:interceptForward (Results 1 – 4 of 4) sorted by relevance
/external/grpc-grpc-java/core/src/main/java/io/grpc/ |
D | ServerInterceptors.java | 43 public static ServerServiceDefinition interceptForward(ServerServiceDefinition serviceDef, in interceptForward() method in ServerInterceptors 45 return interceptForward(serviceDef, Arrays.asList(interceptors)); in interceptForward() 48 public static ServerServiceDefinition interceptForward(BindableService bindableService, in interceptForward() method in ServerInterceptors 50 return interceptForward(bindableService.bindService(), Arrays.asList(interceptors)); in interceptForward() 62 public static ServerServiceDefinition interceptForward( in interceptForward() method in ServerInterceptors 70 public static ServerServiceDefinition interceptForward( in interceptForward() method in ServerInterceptors 73 return interceptForward(bindableService.bindService(), interceptors); in interceptForward()
|
D | ClientInterceptors.java | 44 public static Channel interceptForward(Channel channel, ClientInterceptor... interceptors) { in interceptForward() method in ClientInterceptors 45 return interceptForward(channel, Arrays.asList(interceptors)); in interceptForward() 57 public static Channel interceptForward(Channel channel, in interceptForward() method in ClientInterceptors
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/ |
D | ServerInterceptorsTest.java | 262 ServerServiceDefinition intercepted = ServerInterceptors.interceptForward( in orderedForward()
|
D | ClientInterceptorsTest.java | 210 Channel intercepted = ClientInterceptors.interceptForward(channel, interceptor1, interceptor2); in orderedForward()
|