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.
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).