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

com.ironcorelabs.tenantsecurity.utils.CompletableFutureSupplier Maven / Gradle / Ivy

There is a newer version: 7.2.0
Show newest version
package com.ironcorelabs.tenantsecurity.utils;

/**
 * This is similar to the Java Supplier function type. It has a checked
 * exception on it to allow it to be used in lambda expressions for
 * CompletableFuture helpers.
 * 
 * https://github.com/jasongoodwin/better-java-monads
 * 
 * @param 
 */

public interface CompletableFutureSupplier{
    T get() throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy