-
Methods in de.scravy.bedrock that return Control.Async
| Modifier and Type |
Method |
Description |
static <A> Control.Async<A,A> |
Control.async() |
|
static <In,
Out> Control.Async<In,Out> |
Control.async(ThrowingBiConsumer<In,Callback<Out>> function) |
|
<T> Control.Async<In,T> |
Control.Async.then(ThrowingBiConsumer<Out,Callback<T>> function) |
|
<T> Control.Async<In,Seq<T>> |
Control.Async.then(ThrowingBiConsumer<Out,Callback<T>> function,
ThrowingBiConsumer<Out,Callback<T>>... functions) |
|
static <A> Control.Async<A,A> |
Control.waterfall(Seq<ThrowingBiConsumer<A,Callback<A>>> fs) |
|
static <A> Control.Async<A,A> |
Control.waterfall(ThrowingBiConsumer<A,Callback<A>>... fs) |
|
static <A> Control.Async<A,A> |
Control.waterfall(List<ThrowingBiConsumer<A,Callback<A>>> fs) |
|