Methods
| Modifier and Type |
Method and Description |
void |
addRomEventHandler(RomEventHandler eventHandler) |
String |
create(String remoteClassName,
Props constructorParams) |
String |
create(String remoteClassName,
Props constructorParams,
Continuation<String> cont) |
RomClientJsonRpcClient.RequestAndResponseType |
createCreateRequest(String remoteClassName,
Props constructorParams,
boolean inTx) |
RomClientJsonRpcClient.RequestAndResponseType |
createInvokeRequest(String objectRef,
String operationName,
Props operationParams,
Type type,
boolean inTx) |
RomClientJsonRpcClient.RequestAndResponseType |
createReleaseRequest(String objectRef) |
RomClientJsonRpcClient.RequestAndResponseType |
createSubscribeRequest(String objectRef,
String eventType) |
RomClientJsonRpcClient.RequestAndResponseType |
createUnsubscribeRequest(String objectRef,
String listenerSubscription) |
void |
destroy() |
<E> E |
invoke(String objectRef,
String operationName,
Props operationParams,
Class<E> clazz) |
Object |
invoke(String objectRef,
String operationName,
Props operationParams,
Type type) |
Object |
invoke(String objectRef,
String operationName,
Props operationParams,
Type type,
Continuation<?> cont) |
boolean |
isClosed() |
void |
release(String objectRef) |
void |
release(String objectRef,
Continuation<Void> cont) |
String |
subscribe(String objectRef,
String type) |
String |
subscribe(String objectRef,
String eventType,
Continuation<String> cont) |
void |
transaction(List<Operation> operations) |
void |
transaction(List<Operation> operations,
Continuation<Void> continuation) |
void |
unsubscribe(String objectRef,
String listenerSubscription) |
void |
unsubscribe(String objectRef,
String listenerSubscription,
Continuation<Void> cont) |