Package com.mongodb
Class ReplicaSetStatus
- java.lang.Object
-
- com.mongodb.ReplicaSetStatus
-
@Deprecated public class ReplicaSetStatus extends Object
Deprecated.Keeps replica set status.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description com.mongodb.ServerAddress
getMaster()
Deprecated.Gets the ServerAddress of the master server in this replica set.int
getMaxBsonObjectSize()
Deprecated.Gets the maximum size for a BSON object supported by the current master server.String
getName()
Deprecated.Get the name of the replica set.boolean
isMaster(com.mongodb.ServerAddress serverAddress)
Deprecated.Checks to see if a given server is the primary server in this replica set.String
toString()
Deprecated.
-
-
-
Method Detail
-
getName
@Nullable public String getName()
Deprecated.Get the name of the replica set.- Returns:
- the name of the replica set.
-
getMaster
@Nullable public com.mongodb.ServerAddress getMaster()
Deprecated.Gets the ServerAddress of the master server in this replica set.- Returns:
- master or null if don't have one
- Throws:
com.mongodb.MongoException
- if there's a failure
-
isMaster
public boolean isMaster(com.mongodb.ServerAddress serverAddress)
Deprecated.Checks to see if a given server is the primary server in this replica set.- Parameters:
serverAddress
- the server to compare- Returns:
- true if the given ServerAddress is the current Master/Primary
-
getMaxBsonObjectSize
public int getMaxBsonObjectSize()
Deprecated.Gets the maximum size for a BSON object supported by the current master server. Note that this value may change over time depending on which server is master.- Returns:
- the maximum size, or 0 if not obtained from servers yet.
- Throws:
com.mongodb.MongoException
- if there's a failure
-
-