public Invocations
Public entry-point for invocations responsible for:
managing socket connections
tracking invocations
dispatching the meat of the invocation and response handling logic to InvocationStrategy
provides capabilities for InvocationStrategy:
a number requestId number fountain
To initialise requires a vertx instance, the config, and optional connection exceptionHandler and closeHandler
| Modifier and Type | Interface and Description |
|---|---|
static class |
Invocations.Companion |
| Modifier and Type | Field and Description |
|---|---|
static Invocations.Companion |
Companion |
| Modifier and Type | Method and Description |
|---|---|
int |
getActiveRequestsCount() |
java.lang.Object |
invoke(java.lang.String method,
java.lang.reflect.Type returnType,
java.lang.Object[] params)
public entry point to invoke a method. may block depending if the call has synchronous signature
may not invoke anything at all if the call returns an rx.Observable
|
static Invocations.Companion Companion
int getActiveRequestsCount()
java.lang.Object invoke(java.lang.String method,
java.lang.reflect.Type returnType,
java.lang.Object[] params)
public entry point to invoke a method. may block depending if the call has synchronous signature may not invoke anything at all if the call returns an rx.Observable
method - the name of the methodreturnType - the expected return type of the function being calledparams - the parameters for the call