C# Class MongoDB.Driver.Internal.DirectMongoServerProxy

Connects directly to a specified instance, failing over to other addresses as necessary.
Inheritance: IMongoServerProxy
ファイルを表示 Open project: CloudMetal/mongo-csharp-driver

Public Methods

Method Description
ChooseServerInstance ( ReadPreference readPreference ) : MongoServerInstance

Chooses the server instance.

Connect ( System.TimeSpan timeout, ReadPreference readPreference ) : void

Connects to the server respecting the timeout and readPreference.

DirectMongoServerProxy ( MongoServerSettings settings ) : System

Initializes a new instance of the DirectMongoServerProxy class.

DirectMongoServerProxy ( MongoServerSettings serverSettings, MongoServerInstance instance, int connectionAttempt ) : System

Initializes a new instance of the DirectMongoServerProxy class.

Disconnect ( ) : void

Disconnects from the server.

Ping ( ) : void

Pings the server.

VerifyState ( ) : void

Verifies the state of the server.

Method Details

ChooseServerInstance() public method

Chooses the server instance.
public ChooseServerInstance ( ReadPreference readPreference ) : MongoServerInstance
readPreference ReadPreference The read preference.
return MongoServerInstance

Connect() public method

Connects to the server respecting the timeout and readPreference.
public Connect ( System.TimeSpan timeout, ReadPreference readPreference ) : void
timeout System.TimeSpan The timeout.
readPreference ReadPreference The read preference.
return void

DirectMongoServerProxy() public method

Initializes a new instance of the DirectMongoServerProxy class.
public DirectMongoServerProxy ( MongoServerSettings settings ) : System
settings MongoServerSettings The settings.
return System

DirectMongoServerProxy() public method

Initializes a new instance of the DirectMongoServerProxy class.
public DirectMongoServerProxy ( MongoServerSettings serverSettings, MongoServerInstance instance, int connectionAttempt ) : System
serverSettings MongoServerSettings The server settings.
instance MongoServerInstance The instance.
connectionAttempt int The connection attempt.
return System

Disconnect() public method

Disconnects from the server.
public Disconnect ( ) : void
return void

Ping() public method

Pings the server.
public Ping ( ) : void
return void

VerifyState() public method

Verifies the state of the server.
public VerifyState ( ) : void
return void