All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dts.sdk.TimeoutCompletableFuture Maven / Gradle / Ivy

package com.github.dts.sdk;

import java.util.concurrent.*;

public class TimeoutCompletableFuture extends CompletableFuture {
    private static final TimeoutException TIMEOUT_EXCEPTION = new TimeoutException("DtsSdkListenTimeout");

    private final ScheduledFuture timeoutScheduleFuture;

    public TimeoutCompletableFuture(long timeout, ScheduledExecutorService scheduled) {
        if (timeout > 0 && timeout < Integer.MAX_VALUE) {
            this.timeoutScheduleFuture = scheduled.schedule(() -> {
                if (!isDone()) {
                    completeExceptionally(TIMEOUT_EXCEPTION);
                }
            }, timeout, TimeUnit.MILLISECONDS);
        } else {
            this.timeoutScheduleFuture = null;
        }
    }

    @Override
    public boolean cancel(boolean mayInterruptIfRunning) {
        try {
            if (timeoutScheduleFuture != null) {
                timeoutScheduleFuture.cancel(mayInterruptIfRunning);
            }
        } catch (Exception ignored) {

        }
        return super.cancel(mayInterruptIfRunning);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy