aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/handler/FutureCompletion.java
blob: 3f413d4c570fdeb67104cbb8eea14200b8f5e410 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.handler;

import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Executor;

/**
 * <p>This class provides an implementation of {@link CompletionHandler} that allows you to wait for either {@link
 * #completed()} or {@link #failed(Throwable)} to be called. If failed() was called, the corresponding Throwable will
 * be rethrown when calling either of the get() methods. Unless an exception is thrown, the get() methods will always
 * return Boolean.TRUE.</p>
 *
 * <p>Notice that calling {@link #cancel(boolean)} throws an UnsupportedOperationException.</p>
 *
 * @author Simon Thoresen Hult
 */
public final class FutureCompletion extends CompletableFuture<Boolean> implements CompletionHandler {

    @Override
    public void completed() {
        complete(true);
    }

    @Override
    public void failed(Throwable t) {
        completeExceptionally(t);
    }

    @Override
    public final boolean cancel(boolean mayInterruptIfRunning) {
        throw new UnsupportedOperationException();
    }

    @Override
    public final boolean isCancelled() {
        return false;
    }

    public void addListener(Runnable r, Executor e) { whenCompleteAsync((__, ___) -> r.run(), e); }
}