Home
last modified time | relevance | path

Searched refs:interceptForward (Results 1 – 4 of 4) sorted by relevance

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DServerInterceptors.java43 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()
DClientInterceptors.java44 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/
DServerInterceptorsTest.java262 ServerServiceDefinition intercepted = ServerInterceptors.interceptForward( in orderedForward()
DClientInterceptorsTest.java210 Channel intercepted = ClientInterceptors.interceptForward(channel, interceptor1, interceptor2); in orderedForward()