Uses of Interface
ratpack.exec.ExecController
-
Packages that use ExecController Package Description ratpack.core.http.client The HTTP client.ratpack.exec The execution management.ratpack.reactor Provides integration with the Project Reactor library.ratpack.rx2 Provides integration with the RxJava library.ratpack.test.exec -
-
Uses of ExecController in ratpack.core.http.client
Methods in ratpack.core.http.client with parameters of type ExecController Modifier and Type Method Description HttpClientSpec
HttpClientSpec. execController(ExecController execController)
The exec controller to associate with. -
Uses of ExecController in ratpack.exec
Methods in ratpack.exec that return ExecController Modifier and Type Method Description ExecController
Execution. getController()
The execution controller that this execution is associated with.static ExecController
ExecController. of(Action<? super ExecControllerSpec> definition)
Construct a new execution controller from the provided specification.static ExecController
ExecController. require()
Returns the execution controller bound to the current thread, or throws an exception if called on a non Ratpack managed compute thread.Methods in ratpack.exec that return types with arguments of type ExecController Modifier and Type Method Description static Optional<ExecController>
ExecController. current()
Returns the execution controller bound to the current thread, if this is a Ratpack managed compute thread. -
Uses of ExecController in ratpack.reactor
Methods in ratpack.reactor with parameters of type ExecController Modifier and Type Method Description static Scheduler
ReactorRatpack. computationScheduler(ExecController execController)
static Scheduler
ReactorRatpack. ioScheduler(ExecController execController)
A scheduler that uses the application io thread pool. -
Uses of ExecController in ratpack.rx2
Methods in ratpack.rx2 with parameters of type ExecController Modifier and Type Method Description static Scheduler
RxRatpack. scheduler(ExecController execController)
-
Uses of ExecController in ratpack.test.exec
Methods in ratpack.test.exec that return ExecController Modifier and Type Method Description ExecController
ExecHarness. getController()
-