Home
last modified time | relevance | path

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

/external/grpc-grpc-java/stub/src/main/java/io/grpc/stub/
DMetadataUtils.java49 return stub.withInterceptors(newAttachHeadersInterceptor(extraHeaders)); in attachHeaders()
107 return stub.withInterceptors( in captureMetadata()
DAbstractStub.java184 public final S withInterceptors(ClientInterceptor... interceptors) { in withInterceptors() method in AbstractStub
/external/grpc-grpc-java/examples/src/test/java/io/grpc/examples/header/
DHeaderServerInterceptorTest.java110 .withInterceptors(clientInterceptor); in serverHeaderDeliveredToClient()
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
DAbstractInteropTest.java288 TestServiceGrpc.newBlockingStub(channel).withInterceptors(tracerSetupInterceptor); in setUp()
289 asyncStub = TestServiceGrpc.newStub(channel).withInterceptors(tracerSetupInterceptor); in setUp()
293 blockingStub = blockingStub.withInterceptors(additionalInterceptors); in setUp()
294 asyncStub = asyncStub.withInterceptors(additionalInterceptors); in setUp()
1584 UnimplementedServiceGrpc.newBlockingStub(channel).withInterceptors(tracerSetupInterceptor); in unimplementedService()