Home
last modified time | relevance | path

Searched refs:oobExecutorPool (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DManagedChannelImpl.java124 private final ObjectPool<? extends Executor> oobExecutorPool; field in ManagedChannelImpl
518 ObjectPool<? extends Executor> oobExecutorPool, in ManagedChannelImpl() argument
540 this.oobExecutorPool = checkNotNull(oobExecutorPool, "oobExecutorPool"); in ManagedChannelImpl()
1156 authority, oobExecutorPool, transportFactory.getScheduledExecutorService(), in createOobChannel()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DManagedChannelImplIdlenessTest.java100 private final ObjectPool<Executor> oobExecutorPool = field in ManagedChannelImplIdlenessTest
146 oobExecutorPool, timer.getStopwatchSupplier(), in setUp()
DManagedChannelImplTest.java203 private ObjectPool<Executor> oobExecutorPool; field in ManagedChannelImplTest
224 oobExecutorPool, timer.getStopwatchSupplier(), Arrays.asList(interceptors), in createChannel()
257 when(oobExecutorPool.getObject()).thenReturn(oobExecutor.getScheduledExecutorService()); in setUp()
546 verifyNoMoreInteractions(oobExecutorPool); in subtestCallsAndShutdown()
1171 verify(oobExecutorPool, times(2)).getObject(); in oobchannels()
1223 verify(oobExecutorPool, never()).returnObject(anyObject()); in oobchannels()
1228 verify(oobExecutorPool).returnObject(oobExecutor.getScheduledExecutorService()); in oobchannels()
1259 verify(oobExecutorPool).returnObject(oobExecutor.getScheduledExecutorService()); in oobchannels()
1263 verify(oobExecutorPool, times(2)).returnObject(oobExecutor.getScheduledExecutorService()); in oobchannels()