Uses of Interface
ratpack.exec.ExecSpec
-
Packages that use ExecSpec Package Description ratpack.exec The execution management.ratpack.exec.stream Support for reactive streams. -
-
Uses of ExecSpec in ratpack.exec
Subinterfaces of ExecSpec in ratpack.exec Modifier and Type Interface Description interface
ExecStarter
Starts a newExecution
.Methods in ratpack.exec that return ExecSpec Modifier and Type Method Description ExecSpec
ExecSpec. eventLoop(io.netty.channel.EventLoop eventLoop)
Specifies that the execution must run on the given event loop.ExecSpec
ExecSpec. onComplete(Action<? super Execution> onComplete)
Specifies the completion callback for the execution.ExecSpec
ExecSpec. onError(Action<? super Throwable> onError)
Specify the top level error handler for the execution.ExecSpec
ExecSpec. onStart(Action<? super Execution> onStart)
Specifies an action to be taken just before the execution starts.ExecSpec
ExecSpec. register(Action<? super RegistrySpec> action)
Populates the execution's registry.Method parameters in ratpack.exec with type arguments of type ExecSpec Modifier and Type Method Description default Promise<T>
Promise. fork(Action<? super ExecSpec> execSpec)
Forks a new execution and subscribes to this promise, returning a promise for its value. -
Uses of ExecSpec in ratpack.exec.stream
Method parameters in ratpack.exec.stream with type arguments of type ExecSpec Modifier and Type Method Description static <T> TransformablePublisher<T>
Streams. fork(Publisher<T> publisher, Action<? super ExecSpec> execConfig, Action<? super T> disposer)
Consumes the given publisher eagerly in a forked execution, buffering results until ready to be consumed by this execution.default TransformablePublisher<T>
TransformablePublisher. fork(Action<? super ExecSpec> execConfig, Action<? super T> disposer)
Consumes the given publisher eagerly in a forked execution, buffering results until ready to be consumed by this execution.
-