Uses of Interface
org.apache.fluo.api.client.Loader
-
Packages that use Loader Package Description org.apache.fluo.api.client -
-
Uses of Loader in org.apache.fluo.api.client
Methods in org.apache.fluo.api.client with type parameters of type Loader Modifier and Type Method Description <T extends Loader>
CompletableFuture<T>LoaderExecutor. submit(String identity, T loader)
Same behavior asLoaderExecutor.submit(Loader)
.<T extends Loader>
CompletableFuture<T>LoaderExecutor. submit(T loader)
Same asLoaderExecutor.execute(Loader)
except it returns a future that completes upon successful commit and if an exception is thrown in the loader, it will be relayed through the future.Methods in org.apache.fluo.api.client with parameters of type Loader Modifier and Type Method Description void
LoaderExecutor. execute(String identity, Loader loader)
Same asLoaderExecutor.execute(Loader)
, but allows specifying an identity.void
LoaderExecutor. execute(Loader loader)
QueuesLoader
task implemented by users for execution.
-