Package | Description |
---|---|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
Modifier and Type | Method and Description |
---|---|
TransactionId |
CacheTransactionManager.getTransactionId()
Returns the transaction identifier for the current thread
|
TransactionId |
EntryEvent.getTransactionId()
Gets the TransactionId for this EntryEvent.
|
TransactionId |
TransactionEvent.getTransactionId()
Gets the
TransactionId associated this TransactionEvent. |
TransactionId |
CacheTransactionManager.suspend()
Suspends the transaction on the current thread.
|
Modifier and Type | Method and Description |
---|---|
boolean |
CacheTransactionManager.exists(TransactionId transactionId)
Reports the existence of a transaction for the given transactionId.
|
boolean |
CacheTransactionManager.isSuspended(TransactionId transactionId)
This method can be used to determine if a transaction with the given
transaction identifier is currently suspended locally.
|
void |
CacheTransactionManager.resume(TransactionId transactionId)
On the current thread, resumes a transaction that was previously suspended
using
CacheTransactionManager.suspend() |
boolean |
CacheTransactionManager.tryResume(TransactionId transactionId)
On the current thread, resumes a transaction that was previously suspended
using
CacheTransactionManager.suspend() . |
boolean |
CacheTransactionManager.tryResume(TransactionId transactionId,
long time,
TimeUnit unit)
On the current thread, resumes a transaction that was previously suspended
using
CacheTransactionManager.suspend() , or waits for the specified timeout interval if
the transaction has not been suspended. |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.