CacheTransactionManagerTryResume Method (TransactionId) |
On the current thread, resumes a transaction that was previously suspended
using
[!:suspend].
This method is equivalent to
if (isSuspended(txId)) {
resume(txId);
}
except that this action is performed atomically
Since 3.6.2
Namespace: GemStone.GemFire.Cache.GenericAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic bool TryResume(
TransactionId transactionId
)
Public Function TryResume (
transactionId As TransactionId
) As Boolean
public:
bool TryResume(
TransactionId^ transactionId
)
member TryResume :
transactionId : TransactionId -> bool
Parameters
- transactionId
- Type: GemStone.GemFire.Cache.GenericTransactionId
the transaction to resume
Return Value
Type:
Booleantrue if the transaction was resumed, false otherwise
See Also