Adds the parameters for a connection but doesn't actually connect to the DB. This is used to queue up connection configurations that are later used for opening connections to MongoDB with SakuraMongoDbConnection.connectAll.
Closes a specific db Connection and removes it from SakuraMongoDbConnection's internal Maps.
Closes all connections tracked by this instance of SakuraMongoDbConnection.
Connects to MongoDB with the supplied parameters and returns a Promise containing the newly connected Db
created by MongoClient.connect
.
Iterates through the connection parameters provided via SakuraMongoDbConnection.addConnection and connects to
MongoDb. Returns a Promise containing an array of the connected MongoDB Db
objects.
Gets a connection parameter from the map tracking connections.
Returns a reference to the map of connections currently had.
Gets an MongoDB Db
object from the private SakuraMongoDbConnection map tracking connections.
Generated using TypeDoc
SakuraMongoDbConnection is responsible for managing connections to a MongoDB database or cluster.