void |
TaskDispatcher.create(Token token,
Options options,
ResultHandler<Token,?> handler) |
The CTS Token to create in the persistent store.
|
void |
TaskDispatcher.delete(String tokenId,
ResultHandler<PartialToken,?> handler) |
The Token ID to delete from the persistent store.
|
void |
TaskDispatcher.delete(String tokenId,
Options options,
ResultHandler<PartialToken,?> handler) |
The Token ID, for a specific revision of the token, to delete from the persistent store.
|
void |
TaskDispatcher.partialQuery(TokenFilter tokenFilter,
Options options,
ResultHandler<Collection<PartialToken>,?> handler) |
Perform a query against the persistent store and signal the results to the provided ResultHandler.
|
void |
TaskDispatcher.patch(String tokenId,
TokenModifications modifications,
Options options,
ResultHandler<PartialToken,?> handler) |
Patches a token in the persistent store.
|
void |
TaskDispatcher.query(TokenFilter tokenFilter,
Options options,
ResultHandler<Collection<Token>,?> handler) |
Perform a query against the persistent store and signal the results to the provided ResultHandler.
|
void |
TaskDispatcher.read(String tokenId,
Options options,
ResultHandler<Token,?> handler) |
The CTS Token to read from the persistent store.
|
void |
TaskDispatcher.update(Token readState,
Token updatedState,
Options options,
ResultHandler<Token,?> handler) |
The CTS Token to update in the persistent store.
|
void |
TaskDispatcher.upsert(Token token,
Options options,
ResultHandler<Token,?> handler) |
The CTS Token to create or update in the persistent store.
|