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.rx Provides integration with the RxJava 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<java.util.List<T>>
ReactorRatpack. promise(Flux<T> flux)
static <T> Promise<T>
ReactorRatpack. promiseSingle(Mono<T> mono)
-
Uses of UnmanagedThreadException in ratpack.rx
Methods in ratpack.rx that throw UnmanagedThreadException Modifier and Type Method Description static <T> Promise<java.util.List<T>>
RxRatpack. promise(Observable.OnSubscribe<T> onSubscribe)
Deprecated.Converts anObservable
into aPromise
, for all of the observable's items.static <T> Promise<java.util.List<T>>
RxRatpack. promise(Observable<T> observable)
Deprecated.Converts anObservable
into aPromise
, for all of the observable's items.static <T> Promise<T>
RxRatpack. promiseSingle(Observable.OnSubscribe<T> onSubscribe)
Deprecated.Converts anObservable
into aPromise
, for the observable's single item.static <T> Promise<T>
RxRatpack. promiseSingle(Observable<T> observable)
Deprecated.Converts anObservable
into aPromise
, for the observable's single item. -
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<java.util.List<T>>
RxRatpack. promiseAll(Observable<T> observable)
Converts anObservable
into aPromise
, for all of the observable's items.static <T> Promise<java.util.List<T>>
RxRatpack. promiseAll(ObservableOnSubscribe<T> onSubscribe)
Converts anObservable
into aPromise
, for all of the observable's items.
-