Class TransactionDeadlockException
Indicates a deadlock within Ignite transaction.
This exception can be thrown from any cache method that modifies or reads data within a transaction with timeout (see TxStart(TransactionConcurrency, TransactionIsolation, TimeSpan, int) overload).Implements
Inherited Members
Namespace: Apache.Ignite.Core.Transactions
Assembly: Apache.Ignite.Core.dll
Syntax
[Serializable]
public class TransactionDeadlockException : IgniteException, ISerializable
Constructors
TransactionDeadlockException()
Initializes a new instance of the TransactionDeadlockException class.
Declaration
public TransactionDeadlockException()
TransactionDeadlockException(SerializationInfo, StreamingContext)
Initializes a new instance of the TransactionDeadlockException class.
Declaration
protected TransactionDeadlockException(SerializationInfo info, StreamingContext ctx)
Parameters
| Type | Name | Description |
|---|---|---|
| SerializationInfo | info | Serialization information. |
| StreamingContext | ctx | Streaming context. |
TransactionDeadlockException(string)
Initializes a new instance of the TransactionDeadlockException class.
Declaration
public TransactionDeadlockException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message that describes the error. |
TransactionDeadlockException(string, Exception)
Initializes a new instance of the TransactionDeadlockException class.
Declaration
public TransactionDeadlockException(string message, Exception cause)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message. |
| Exception | cause | The cause. |