Start the replication manager as a client site, and optionally call
            for an election.
            
    Namespace: 
   BerkeleyDB
    Assembly:
   libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.21.0
Syntax
| C# | 
|---|
public void RepMgrStartClient(
	int nthreads,
	bool holdElection
)  | 
| Visual Basic (Declaration) | 
|---|
Public Sub RepMgrStartClient ( _
	nthreads As Integer, _
	holdElection As Boolean _
)  | 
| Visual C++ | 
|---|
public:
void RepMgrStartClient(
	int nthreads, 
	bool holdElection
)  | 
Parameters
- nthreads
 - Type: System..::.Int32
            Specify the number of threads of control created and dedicated to
            processing replication messages. In addition to these message
            processing threads, the replication manager creates and manages a
            few of its own threads of control.
             
- holdElection
 - Type: System..::.Boolean
            If true, start as a client, and call for an election if no master is
            found.
             
See Also