Home | History | Annotate | Download | only in concurrent

Lines Matching defs:orRelay

1558     static final class OrRelay<T,U> extends BiCompletion<T,U,Object> { // for Or
1559 OrRelay(CompletableFuture<Object> dep, CompletableFuture<T> src,
1567 if ((d = dep) == null || !d.orRelay(a = src, b = snd))
1574 final boolean orRelay(CompletableFuture<?> a, CompletableFuture<?> b) {
1596 if (!d.orRelay(a, b)) {
1597 OrRelay<?,?> c = new OrRelay<>(d, a, b);