Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 2c64c75

Browse files
committed
feat(topology-description): add helper method for server ownership
1 parent 989e8cf commit 2c64c75

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lib/sdam/topology_description.js

+10
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,16 @@ class TopologyDescription {
226226
hasWritableServer() {
227227
return this.hasReadableServer(ReadPreference.primary);
228228
}
229+
230+
/**
231+
* Determines if the topology has a definition for the provided address
232+
*
233+
* @param {String} address
234+
* @return {Boolean} Whether the topology knows about this server
235+
*/
236+
hasServer(address) {
237+
return this.servers.has(address);
238+
}
229239
}
230240

231241
function topologyTypeForServerType(serverType) {

0 commit comments

Comments
 (0)