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

org.sputnikdev.bluetooth.manager.impl.DeferredCompletableFuture Maven / Gradle / Ivy

package org.sputnikdev.bluetooth.manager.impl;

import java.util.concurrent.CompletableFuture;
import java.util.function.Function;

class DeferredCompletableFuture extends CompletableFuture {

    private final Function function;

    DeferredCompletableFuture(Function function) {
        this.function = function;
    }

    Function getFunction() {
        return function;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy