Home
last modified time | relevance | path

Searched refs:effectiveInterceptors (Results 1 – 2 of 2) sorted by relevance

/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DAbstractManagedChannelImplBuilderTest.java270 List<ClientInterceptor> effectiveInterceptors = builder.getEffectiveInterceptors(); in getEffectiveInterceptors_default() local
271 assertEquals(3, effectiveInterceptors.size()); in getEffectiveInterceptors_default()
272 assertThat(effectiveInterceptors.get(0)) in getEffectiveInterceptors_default()
274 assertThat(effectiveInterceptors.get(1)) in getEffectiveInterceptors_default()
276 assertThat(effectiveInterceptors.get(2)).isSameAs(DUMMY_USER_INTERCEPTOR); in getEffectiveInterceptors_default()
283 List<ClientInterceptor> effectiveInterceptors = builder.getEffectiveInterceptors(); in getEffectiveInterceptors_disableStats() local
284 assertEquals(2, effectiveInterceptors.size()); in getEffectiveInterceptors_disableStats()
285 assertThat(effectiveInterceptors.get(0)) in getEffectiveInterceptors_disableStats()
287 assertThat(effectiveInterceptors.get(1)).isSameAs(DUMMY_USER_INTERCEPTOR); in getEffectiveInterceptors_disableStats()
294 List<ClientInterceptor> effectiveInterceptors = builder.getEffectiveInterceptors(); in getEffectiveInterceptors_disableTracing() local
[all …]
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DAbstractManagedChannelImplBuilder.java420 List<ClientInterceptor> effectiveInterceptors = in getEffectiveInterceptors() local
431 effectiveInterceptors.add( in getEffectiveInterceptors()
439 effectiveInterceptors.add(0, censusTracing.getClientInterceptor()); in getEffectiveInterceptors()
441 return effectiveInterceptors; in getEffectiveInterceptors()