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;
}
}