The amount of time a master site delays between completing a checkpoint and writing a checkpoint record into the log.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet181 (in libdb_dotnet181.dll) Version: 18.1.32.0

Syntax

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

Remarks

This delay allows clients to complete their own checkpoints before the master requires completion of them. The default is 30 seconds. Delay should be set to 0 if all databases in the environment and the environment's transaction log are configured to reside in-memory.

See Also