RxInvoker
subclass type.
RxInvoker
provider.
RxInvokerProvider
must be registered in the client runtime using Client#register(Class)
. It provides
a way to plug-in support for other reactive implementations, see Invocation.Builder#rx(Class)
.
Modifier and Type | Method and Description |
---|---|
public T | Returns: instance of theRxInvoker subclass.SyncInvoker used to execute current request.executor service, which should be used for executing reactive callbacks invocations. It can be
executorService)null ; in that case it's up to the implementation to choose the best ExecutorService in given
environment.Get |
public boolean | Returns: true when this provider provides given RxInvoker subclass, false otherwise.RxInvoker subclass.Determine if this is a provider for the given |
getRxInvoker | back to summary |
---|---|
public T getRxInvoker(SyncInvoker syncInvoker, ExecutorService executorService) Get The returned instance has to be thread safe.
|
isProviderFor | back to summary |
---|---|
public boolean isProviderFor(Class<?> clazz) Determine if this is a provider for the given
|