void |
StoreTransaction.abort() |
Aborts a local transaction.
|
void |
StoreTransaction.abort(XidImpl globalTxId) |
Aborts a 2PC transaction.
|
abstract void |
CompositeStoreTransaction.abortTransaction() |
|
void |
DurableSubscriberStore.close() |
Closes the store.
|
void |
NonPersistentStore.close() |
Close the store and delete all content.
|
void |
PersistentStore.close() |
Close the store.
|
void |
StoreTransaction.commit() |
Commits a local transaction.
|
void |
StoreTransaction.commit(XidImpl globalTxId) |
Commits a 2PC transaction.
|
abstract void |
CompositeStoreTransaction.commitTransaction() |
|
StoreReadTransaction |
PersistentStore.createReadTransaction(boolean markRedelivered) |
Create a new read transaction.
|
StoreWriteTransaction |
PersistentStore.createWriteTransaction() |
Create a new write transaction.
|
void |
NonPersistentStore.delete(java.lang.Object key) |
Delete a store entry.
|
void |
PersistentStore.delete() |
Delete the persistent store incl.
|
void |
DurableSubscriberStore.deleteDurableStoreEntry(java.lang.String clientId,
java.lang.String durableName) |
Deletes a DurableStoreEntry.
|
StoreEntry |
NonPersistentStore.get(java.lang.Object key) |
Get a store entry.
|
StoreEntry |
PersistentStore.get(java.lang.Object key) |
Get a store entry.
|
DurableStoreEntry |
DurableSubscriberStore.getDurableStoreEntry(java.lang.String clientId,
java.lang.String durableName) |
Returns a DurableStoreEntry.
|
abstract DurableSubscriberStore |
StoreSwiftlet.getDurableSubscriberStore() |
Returns the durable subscriber store.
|
abstract NonPersistentStore |
StoreSwiftlet.getNonPersistentStore(java.lang.String queueName) |
Returns the non-persistent store for a queue.
|
abstract PersistentStore |
StoreSwiftlet.getPersistentStore(java.lang.String queueName) |
Returns the persistent store for a queue.
|
abstract java.util.List |
StoreSwiftlet.getPrepareLogRecords() |
Returns a list of all prepared log records.
|
java.util.List |
PersistentStore.getStoreEntries() |
Returns a list of all store entries
|
void |
NonPersistentStore.insert(StoreEntry storeEntry) |
Insert a store entry.
|
void |
StoreWriteTransaction.insert(StoreEntry storeEntry) |
Insert a new store entry.
|
void |
DurableSubscriberStore.insertDurableStoreEntry(DurableStoreEntry durableStoreEntry) |
Insert a new DurableStoreEntry.
|
java.util.Iterator |
DurableSubscriberStore.iterator() |
Returns an iterator for all DurableStoreEntries.
|
void |
StoreTransaction.prepare(XidImpl globalTxId) |
Prepares a 2PC transaction.
|
void |
StoreReadTransaction.remove(java.lang.Object key) |
Remove a read message out of the store.
|
abstract void |
StoreSwiftlet.removePrepareLogRecord(PrepareLogRecord record) |
Removes a prepared log record.
|
abstract void |
CompositeStoreTransaction.setPersistentStore(PersistentStore pStore) |
|
void |
NonPersistentStore.updateDeliveryCount(java.lang.Object key,
int deliveryCount) |
Update the delivery count of a store entry.
|