TxnTimeout Property

BerkeleyDB

A value, in microseconds, representing transaction timeouts.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public uint TxnTimeout { get; set; }
Visual Basic (Declaration)
Public Property TxnTimeout As UInteger
Visual C++
public:
property unsigned int TxnTimeout {
	unsigned int get ();
	void set (unsigned int value);
}

Remarks

All timeouts are checked whenever a thread of control blocks on a lock or when deadlock detection is performed. As timeouts are only checked when the lock request first blocks or when deadlock detection is performed, the accuracy of the timeout depends on how often deadlock detection is performed.

Timeout values specified for the database environment may be overridden on a per-transaction basis, see SetTxnTimeout(UInt32).

See Also