Uses of Class
ratpack.exec.UnmanagedThreadException
-
Packages that use UnmanagedThreadException Package Description ratpack.exec The execution management.ratpack.reactor Provides integration with the Project Reactor library.ratpack.rx2 Provides integration with the RxJava library. -
-
Uses of UnmanagedThreadException in ratpack.exec
Methods in ratpack.exec that throw UnmanagedThreadException Modifier and Type Method Description static Execution
Execution. current()
Provides the currently executing execution.static ExecStarter
Execution. fork()
Used to create a new execution.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. -
Uses of UnmanagedThreadException in ratpack.reactor
Methods in ratpack.reactor that throw UnmanagedThreadException Modifier and Type Method Description static <T> Promise<List<T>>
ReactorRatpack. promise(Flux<T> flux)
static <T> Promise<T>
ReactorRatpack. promiseSingle(Mono<T> mono)
-
Uses of UnmanagedThreadException in ratpack.rx2
Methods in ratpack.rx2 that throw UnmanagedThreadException Modifier and Type Method Description static <T> Promise<T>
RxRatpack. promise(Single<T> single)
static <T> Promise<T>
RxRatpack. promise(SingleOnSubscribe<T> onSubscribe)
Converts anSingleOnSubscribe
into aPromise
, for the Single's item.static <T> Promise<List<T>>
RxRatpack. promiseAll(Observable<T> observable)
Converts anObservable
into aPromise
, for all of the observable's items.static <T> Promise<List<T>>
RxRatpack. promiseAll(ObservableOnSubscribe<T> onSubscribe)
Converts anObservable
into aPromise
, for all of the observable's items.
-