com.ironcorelabs.tenantsecurity.utils.CompletableFutureSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tenant-security-java Show documentation
Show all versions of tenant-security-java Show documentation
Java client library for the IronCore Labs Tenant Security Proxy.
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;
}