All Classes and Interfaces
Class
Description
Entry point for async.java's combinators.
Throwable-fixed shorthand for
IAsyncCallback<T, Throwable>.Error-first callback (Node.js-style).
Throwable-fixed shorthand for
AsyncTask<T, Throwable>.Promise-returning sibling to
Asyncc.
new BeanTranslator.Builder()
.translate(
new
Translator<String, Integer>(String.class, Integer.class){
@Override
public Integer translate(String instance) {
return Integer.valueOf(instance);
}})
.build();An async (non-blocking) mutex.
A bounded async work queue.
Error-first continuation used by
NeoQueue.ITaskHandler.An async (non-blocking) reader/writer lock.
Async-recursion engine behind
Asyncc.Whilst(org.ores.async.NeoWhilstI.SyncTruthTest, org.ores.async.NeoWhilstI.AsyncTask<T, E>, org.ores.async.Asyncc.IAsyncCallback<java.util.List<T>, E>) and Asyncc.DoWhilst(org.ores.async.NeoWhilstI.SyncTruthTest, org.ores.async.NeoWhilstI.AsyncTask<T, E>, org.ores.async.Asyncc.IAsyncCallback<java.util.List<T>, E>) and their
Limit variants.Token returned to a
acquire callback.Helpers that adapt error-first callbacks into more concise call sites.
Bridge between async.java's error-first callback shape and the JDK's promise primitive
(
CompletableFuture / CompletionStage).