void |
CTSPersistentStore.addContinuousQueryListener(ContinuousQueryListener listener,
TokenFilter filter) |
Performs a continuous query against the persistent store using the provided TokenFilter.
|
Collection<PartialToken> |
CTSPersistentStore.attributeQuery(TokenFilter tokenFilter) |
Performs a partial Token query against the store synchronously.
|
Collection<PartialToken> |
CTSPersistentStore.attributeQuery(TokenFilter tokenFilter,
Options options) |
Performs a partial Token query against the store synchronously.
|
default void |
CTSPersistentStore.attributeQueryAsync(TokenFilter tokenFilter,
ResultHandler<Collection<PartialToken>,CoreTokenException> resultHandler) |
Performs a partial Token query against the store synchronously.
|
void |
CTSPersistentStore.attributeQueryAsync(TokenFilter tokenFilter,
Options options,
ResultHandler<Collection<PartialToken>,CoreTokenException> resultHandler) |
Performs a partial Token query against the store synchronously.
|
void |
CTSPersistentStore.create(Token token) |
Creates a Token in the persistent store synchronously.
|
void |
CTSPersistentStore.create(Token token,
Options options) |
Creates a Token in the persistent store synchronously.
|
void |
CTSPersistentStore.createAsync(Token token) |
Creates a Token in the persistent store asynchronously.
|
void |
CTSPersistentStore.createAsync(Token token,
Options options) |
Creates a Token in the persistent store asynchronously.
|
void |
CTSPersistentStore.delete(String tokenId) |
Delete the Token from the store synchronously based on its id.
|
void |
CTSPersistentStore.delete(String tokenId,
Options options) |
Delete the Token from the store synchronously based on its id.
|
void |
CTSPersistentStore.delete(Token token) |
Delete the Token from the store synchronously.
|
void |
CTSPersistentStore.deleteAsync(String tokenId) |
Delete the Token from the store asynchronously based on its id.
|
void |
CTSPersistentStore.deleteAsync(String tokenId,
Options options) |
Delete the Token from the store asynchronously based on its id.
|
void |
CTSPersistentStore.deleteAsync(Token token) |
Deletes the Token from the store asynchronously.
|
default void |
CTSPersistentStore.deleteOnQueryAsync(TokenFilter tokenFilter) |
Performs an asynchronous query against the persistent store using the provided TokenFilter and then deletes the
matching tokens from the store.
|
void |
CTSPersistentStore.deleteOnQueryAsync(TokenFilter tokenFilter,
Options options) |
Performs an asynchronous query against the persistent store using the provided TokenFilter and then deletes the
matching tokens from the store.
|
void |
CTSPersistentStore.patch(String tokenId,
TokenType tokenType,
TokenModifications modifications) |
Patches a token which already exists in the persistent store with modifications.
|
void |
CTSPersistentStore.patch(String tokenId,
TokenType tokenType,
TokenModifications modifications,
Options options) |
Patches a token which already exists in the persistent store with modifications.
|
void |
CTSPersistentStore.patchAsync(String tokenId,
TokenType tokenType,
TokenModifications modifications) |
Asynchronously patches a token which already exists in the persistent store with modifications.
|
void |
CTSPersistentStore.patchAsync(String tokenId,
TokenType tokenType,
TokenModifications modifications,
Options options) |
Asynchronously patches a token which already exists in the persistent store with modifications.
|
Collection<Token> |
CTSPersistentStore.query(TokenFilter filter) |
Performs a synchronous query against the persistent store using the provided TokenFilter.
|
Collection<Token> |
CTSPersistentStore.query(TokenFilter filter,
Options options) |
Performs a synchronous query against the persistent store using the provided TokenFilter.
|
Token |
CTSPersistentStore.read(String tokenId) |
Read a Token from the persistent store synchronously.
|
Token |
CTSPersistentStore.read(String tokenId,
Options options) |
Read a Token from the persistent store synchronously.
|
void |
CTSPersistentStore.removeContinuousQueryListener(ContinuousQueryListener listener,
TokenFilter filter) |
|
void |
CTSPersistentStore.update(Token readState,
Token updatedState) |
Updates an existing Token in the store synchronously.
|
void |
CTSPersistentStore.update(Token readState,
Token updatedState,
Options options) |
Updates an existing Token in the store synchronously.
|
void |
CTSPersistentStore.updateAsync(Token readState,
Token updatedState) |
Updates an existing Token in the store asynchronously.
|
void |
CTSPersistentStore.updateAsync(Token readState,
Token updatedState,
Options options) |
Updates an existing Token in the store asynchronously.
|
void |
CTSPersistentStore.upsert(Token token) |
Updates an existing Token in the store synchronously.
|
void |
CTSPersistentStore.upsert(Token token,
Options options) |
Updates an existing Token in the store synchronously.
|
void |
CTSPersistentStore.upsertAsync(Token token) |
Updates an existing Token in the store asynchronously.
|
void |
CTSPersistentStore.upsertAsync(Token token,
Options options) |
Updates an existing Token in the store asynchronously.
|