Click or drag to resize
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.Generic
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public bool TryResume(
	TransactionId transactionId
)

Parameters

transactionId
Type: GemStone.GemFire.Cache.GenericTransactionId
the transaction to resume

Return Value

Type: Boolean
true if the transaction was resumed, false otherwise
See Also