Home
last modified time | relevance | path

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

/external/dagger2/javatests/dagger/functional/producers/cancellation/
DProducerCancellationTest.java47 ListenableFuture<String> entryPoint1 = component.entryPoint1(); in cancellingOneEntryPoint_cancelsAllRunningNodes() local
50 assertThat(entryPoint1.cancel(true)).isTrue(); in cancellingOneEntryPoint_cancelsAllRunningNodes()
51 assertThat(entryPoint1.isCancelled()).isTrue(); in cancellingOneEntryPoint_cancelsAllRunningNodes()
67 ListenableFuture<String> entryPoint1 = component.entryPoint1(); in cancellingNonEntryPointProducer_doesNotCancelUnderlyingTask() local
88 entryPoint1.cancel(true); in cancellingNonEntryPointProducer_doesNotCancelUnderlyingTask()
96 component.entryPoint1(); in cancellingProducerFromComponentDependency_cancelsUnderlyingTask()
DCancellationComponent.java34 ListenableFuture<String> entryPoint1(); in entryPoint1() method
DProducerSubcomponentCancellationTest.java76 assertThat(component.entryPoint1().get(1, MILLISECONDS)).isEqualTo("completed"); in cancellingSubcomponent_doesNotCancelParent()