use of com.hazelcast.spi.impl.operationservice.impl.CompletableFutureTestUtil.CountingExecutor in project hazelcast by hazelcast.
the class BiCompletionStageTest method setup.
@Before
public void setup() {
local = createHazelcastInstance(smallInstanceConfig());
future1 = invocation1.invoke(local);
future2 = invocation2.invoke(local);
countingExecutor = new CountingExecutor();
}
Aggregations