Uses of Interface
ratpack.exec.ExecSpec
-
Packages that use ExecSpec Package Description ratpack.exec The execution management.ratpack.stream Support for reactive streams. -
-
Uses of ExecSpec in ratpack.exec
Subinterfaces of ExecSpec in ratpack.exec Modifier and Type Interface Description interfaceExecStarterStarts a newExecution.Methods in ratpack.exec that return ExecSpec Modifier and Type Method Description ExecSpecExecSpec. eventLoop(io.netty.channel.EventLoop eventLoop)Specifies that the execution must run on the given event loop.ExecSpecExecSpec. onComplete(Action<? super Execution> onComplete)Specifies the completion callback for the execution.ExecSpecExecSpec. onError(Action<? super java.lang.Throwable> onError)Specify the top level error handler for the execution.ExecSpecExecSpec. onStart(Action<? super Execution> onStart)Specifies an action to be taken just before the execution starts.ExecSpecExecSpec. 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.stream
Method parameters in ratpack.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.
-