Home | History | Annotate | Download | only in concurrent

Lines Matching refs:future3

821     SettableFuture<String> future3 = SettableFuture.create();
824 Futures.allAsList(future1, future2, future3);
837 future3.set(DATA3);
997 SettableFuture<String> future3 = SettableFuture.create();
1002 future3.set(DATA3);
1006 Futures.allAsList(future1, future2, future3);
1464 SettableFuture<String> future3 = SettableFuture.create();
1467 Futures.successfulAsList(future1, future2, future3);
1480 future3.set(DATA3);
1678 SettableFuture<String> future3 = SettableFuture.create();
1681 Futures.successfulAsList(future1, future2, future3);
1691 future3.set(DATA3);
2366 SettableFuture<Long> future3 = SettableFuture.create();
2371 ImmutableList.<ListenableFuture<Long>>of(future1, future2, future3, future4, future5));
2375 future3.set(4L);
2388 SettableFuture<Long> future3 = SettableFuture.create();
2393 ImmutableList.<ListenableFuture<Long>>of(future1, future2, future3, future4, future5));
2397 future3.set(4L);
2420 SettableFuture<Long> future3 = SettableFuture.create();
2425 ImmutableList.<ListenableFuture<Long>>of(future1, future2, future3, future4, future5));
2429 future3.cancel(true);
2470 SettableFuture<Integer> future3 = SettableFuture.create();
2473 ImmutableList.<ListenableFuture<?>>of(future1, future2, future3);
2477 future3.set(3);