Packages

case class MongoClient(wrapped: com.mongodb.async.client.MongoClient) extends Closeable with Product with Serializable

A client-side representation of a MongoDB cluster. Instances can represent either a standalone MongoDB instance, a replica set, or a sharded cluster. Instance of this class are responsible for maintaining an up-to-date state of the cluster, and possibly cache resources related to this, including background threads for monitoring, and connection pools.

Instance of this class server as factories for MongoDatabase instances.

wrapped

the underlying java MongoClient

Since

1.0

Linear Supertypes
Serializable, Serializable, Product, Equals, Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoClient
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Closeable
  7. AutoCloseable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MongoClient(wrapped: com.mongodb.async.client.MongoClient)

    wrapped

    the underlying java MongoClient

Value Members

  1. def close(): Unit

    Close the client, which will close all underlying cached resources, including, for example, sockets and background monitoring threads.

    Close the client, which will close all underlying cached resources, including, for example, sockets and background monitoring threads.

    Definition Classes
    MongoClient → Closeable → AutoCloseable
  2. def getDatabase(name: String): MongoDatabase

    Gets the database with the given name.

    Gets the database with the given name.

    name

    the name of the database

    returns

    the database

  3. def listDatabaseNames(): Observable[String]

    Get a list of the database names

    Get a list of the database names

    List Databases

    returns

    an iterable containing all the names of all the databases

  4. def listDatabases[TResult]()(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): ListDatabasesObservable[TResult]

    Gets the list of databases

    Gets the list of databases

    TResult

    the type of the class to use instead of Document.

    returns

    the fluent list databases interface

  5. lazy val settings: MongoClientSettings

    Gets the settings that this client uses to connect to server.

    Gets the settings that this client uses to connect to server.

    **Note**: MongoClientSettings is immutable.

    returns

    the settings