FreeThreaded Field

BerkeleyDB

If true, the created DatabaseEnvironment object will be free-threaded; that is, concurrently usable by multiple threads in the address space.

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

Syntax

C#
public bool FreeThreaded
Visual Basic (Declaration)
Public FreeThreaded As Boolean
Visual C++
public:
bool FreeThreaded

Remarks

Required to be true if the created DatabaseEnvironment object will be concurrently used by more than one thread in the process, or if any Database objects opened in the scope of the DatabaseEnvironment object will be concurrently used by more than one thread in the process.

Required to be true when using the Replication Manager.

See Also