Uses of Interface
ratpack.exec.ExecStarter
-
Packages that use ExecStarter Package Description ratpack.exec The execution management.ratpack.test.exec -
-
Uses of ExecStarter in ratpack.exec
Methods in ratpack.exec that return ExecStarter Modifier and Type Method Description ExecStarter
ExecStarter. eventLoop(io.netty.channel.EventLoop eventLoop)
Specifies that the execution must run on the given event loop.ExecStarter
ExecController. fork()
Create a newExecution
from this controller that is bound to the computation threads.static ExecStarter
Execution. fork()
Used to create a new execution.ExecStarter
ExecStarter. onComplete(Action<? super Execution> onComplete)
Specifies the completion callback for the execution.ExecStarter
ExecStarter. onError(Action<? super Throwable> onError)
Specify the top level error handler for the execution.ExecStarter
ExecStarter. onStart(Action<? super Execution> onStart)
Specifies an action to be taken just before the execution starts.ExecStarter
ExecStarter. register(Action<? super RegistrySpec> action)
Populates the execution's registry. -
Uses of ExecStarter in ratpack.test.exec
Methods in ratpack.test.exec that return ExecStarter Modifier and Type Method Description default ExecStarter
ExecHarness. fork()
-