Uses of Interface
ratpack.exec.Downstream
-
Packages that use Downstream Package Description ratpack.exec The execution management.ratpack.exec.util -
-
Uses of Downstream in ratpack.exec
Methods in ratpack.exec that return Downstream Modifier and Type Method Description default Downstream<T>
Downstream. onComplete(Block block)
Wrap this downstream, using the given action as the implementation of thecomplete()
method.default Downstream<T>
Downstream. onError(Action<? super Throwable> action)
Wrap this downstream, using the given action as the implementation of theerror(Throwable)
method.default <O> Downstream<O>
Downstream. onSuccess(Action<? super O> action)
Wrap this downstream, using the given action as the implementation of thesuccess(T)
method.Methods in ratpack.exec with parameters of type Downstream Modifier and Type Method Description void
Promise. connect(Downstream<? super T> downstream)
A low level hook for consuming the promised value.void
Upstream. connect(Downstream<? super T> downstream)
Connect the downstream. -
Uses of Downstream in ratpack.exec.util
Classes in ratpack.exec.util that implement Downstream Modifier and Type Class Description class
Promised<T>
A logical value that will be available later, that promises can be created for.
-