Packages

c

org.mongodb.scala

MongoDatabase

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

The MongoDatabase representation.

wrapped

the underlying java MongoDatabase

Since

1.0

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoDatabase
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

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

    wrapped

    the underlying java MongoDatabase

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. lazy val codecRegistry: CodecRegistry

    Get the codec registry for the MongoDatabase.

    Get the codec registry for the MongoDatabase.

    returns

    the { @link org.bson.codecs.configuration.CodecRegistry}

  7. def createCollection(clientSession: ClientSession, collectionName: String, options: CreateCollectionOptions): SingleObservable[Completed]

    Create a new collection with the selected options

    Create a new collection with the selected options

    Create Command

    clientSession

    the client session with which to associate this operation

    collectionName

    the name for the new collection to create

    options

    various options for creating the collection

    returns

    a Observable identifying when the collection has been created

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  8. def createCollection(clientSession: ClientSession, collectionName: String): SingleObservable[Completed]

    Create a new collection with the given name.

    Create a new collection with the given name.

    Create Command

    clientSession

    the client session with which to associate this operation

    collectionName

    the name for the new collection to create

    returns

    a Observable identifying when the collection has been created

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  9. def createCollection(collectionName: String, options: CreateCollectionOptions): SingleObservable[Completed]

    Create a new collection with the selected options

    Create a new collection with the selected options

    Create Command

    collectionName

    the name for the new collection to create

    options

    various options for creating the collection

    returns

    a Observable identifying when the collection has been created

  10. def createCollection(collectionName: String): SingleObservable[Completed]

    Create a new collection with the given name.

    Create a new collection with the given name.

    Create Command

    collectionName

    the name for the new collection to create

    returns

    a Observable identifying when the collection has been created

  11. def createView(clientSession: ClientSession, viewName: String, viewOn: String, pipeline: Seq[Bson], createViewOptions: CreateViewOptions): SingleObservable[Completed]

    Creates a view with the given name, backing collection/view name, aggregation pipeline, and options that defines the view.

    Creates a view with the given name, backing collection/view name, aggregation pipeline, and options that defines the view.

    Create Command

    clientSession

    the client session with which to associate this operation

    viewName

    the name of the view to create

    viewOn

    the backing collection/view for the view

    pipeline

    the pipeline that defines the view

    createViewOptions

    various options for creating the view

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  12. def createView(clientSession: ClientSession, viewName: String, viewOn: String, pipeline: Seq[Bson]): SingleObservable[Completed]

    Creates a view with the given name, backing collection/view name, and aggregation pipeline that defines the view.

    Creates a view with the given name, backing collection/view name, and aggregation pipeline that defines the view.

    Create Command

    clientSession

    the client session with which to associate this operation

    viewName

    the name of the view to create

    viewOn

    the backing collection/view for the view

    pipeline

    the pipeline that defines the view

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  13. def createView(viewName: String, viewOn: String, pipeline: Seq[Bson], createViewOptions: CreateViewOptions): SingleObservable[Completed]

    Creates a view with the given name, backing collection/view name, aggregation pipeline, and options that defines the view.

    Creates a view with the given name, backing collection/view name, aggregation pipeline, and options that defines the view.

    Create Command

    viewName

    the name of the view to create

    viewOn

    the backing collection/view for the view

    pipeline

    the pipeline that defines the view

    createViewOptions

    various options for creating the view

    Since

    1.2

    Note

    Requires MongoDB 3.4 or greater

  14. def createView(viewName: String, viewOn: String, pipeline: Seq[Bson]): SingleObservable[Completed]

    Creates a view with the given name, backing collection/view name, and aggregation pipeline that defines the view.

    Creates a view with the given name, backing collection/view name, and aggregation pipeline that defines the view.

    Create Command

    viewName

    the name of the view to create

    viewOn

    the backing collection/view for the view

    pipeline

    the pipeline that defines the view

    Since

    1.2

    Note

    Requires MongoDB 3.4 or greater

  15. def drop(clientSession: ClientSession): SingleObservable[Completed]

    Drops this database.

    Drops this database.

    Drop database

    clientSession

    the client session with which to associate this operation

    returns

    a Observable identifying when the database has been dropped

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  16. def drop(): SingleObservable[Completed]

    Drops this database.

    Drops this database.

    Drop database

    returns

    a Observable identifying when the database has been dropped

  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def getCollection[TResult](collectionName: String)(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): MongoCollection[TResult]

    Gets a collection, with a specific default document class.

    Gets a collection, with a specific default document class.

    TResult

    the type of the class to use instead of Document.

    collectionName

    the name of the collection to return

    returns

    the collection

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def listCollectionNames(clientSession: ClientSession): Observable[String]

    Gets the names of all the collections in this database.

    Gets the names of all the collections in this database.

    clientSession

    the client session with which to associate this operation

    returns

    a Observable with all the names of all the collections in this database

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  23. def listCollectionNames(): Observable[String]

    Gets the names of all the collections in this database.

    Gets the names of all the collections in this database.

    returns

    a Observable with all the names of all the collections in this database

  24. def listCollections[TResult](clientSession: ClientSession)(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): ListCollectionsObservable[TResult]

    Finds all the collections in this database.

    Finds all the collections in this database.

    listCollections

    TResult

    the target document type of the iterable.

    clientSession

    the client session with which to associate this operation

    returns

    the fluent list collections interface

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  25. def listCollections[TResult]()(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): ListCollectionsObservable[TResult]

    Finds all the collections in this database.

    Finds all the collections in this database.

    listCollections

    TResult

    the target document type of the iterable.

    returns

    the fluent list collections interface

  26. lazy val name: String

    Gets the name of the database.

    Gets the name of the database.

    returns

    the database name

  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. lazy val readConcern: ReadConcern

    Get the read concern for the MongoDatabase.

    Get the read concern for the MongoDatabase.

    returns

    the ReadConcern

    Since

    1.1

  31. lazy val readPreference: ReadPreference

    Get the read preference for the MongoDatabase.

    Get the read preference for the MongoDatabase.

    returns

    the { @link com.mongodb.ReadPreference}

  32. def runCommand[TResult](clientSession: ClientSession, command: Bson, readPreference: ReadPreference)(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): SingleObservable[TResult]

    Executes command in the context of the current database.

    Executes command in the context of the current database.

    TResult

    the type of the class to use instead of Document.

    command

    the command to be run

    readPreference

    the ReadPreference to be used when executing the command

    returns

    a Observable containing the command result

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  33. def runCommand[TResult](clientSession: ClientSession, command: Bson)(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): SingleObservable[TResult]

    Executes command in the context of the current database using the primary server.

    Executes command in the context of the current database using the primary server.

    TResult

    the type of the class to use instead of Document.

    clientSession

    the client session with which to associate this operation

    command

    the command to be run

    returns

    a Observable containing the command result

    Since

    2.2

    Note

    Requires MongoDB 3.6 or greater

  34. def runCommand[TResult](command: Bson, readPreference: ReadPreference)(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): SingleObservable[TResult]

    Executes command in the context of the current database.

    Executes command in the context of the current database.

    TResult

    the type of the class to use instead of Document.

    command

    the command to be run

    readPreference

    the ReadPreference to be used when executing the command

    returns

    a Observable containing the command result

  35. def runCommand[TResult](command: Bson)(implicit e: DefaultsTo[TResult, Document], ct: ClassTag[TResult]): SingleObservable[TResult]

    Executes command in the context of the current database using the primary server.

    Executes command in the context of the current database using the primary server.

    TResult

    the type of the class to use instead of Document.

    command

    the command to be run

    returns

    a Observable containing the command result

  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  40. def withCodecRegistry(codecRegistry: CodecRegistry): MongoDatabase

    Create a new MongoDatabase instance with a different codec registry.

    Create a new MongoDatabase instance with a different codec registry.

    codecRegistry

    the new { @link org.bson.codecs.configuration.CodecRegistry} for the collection

    returns

    a new MongoDatabase instance with the different codec registry

  41. def withReadConcern(readConcern: ReadConcern): MongoDatabase

    Create a new MongoDatabase instance with a different read concern.

    Create a new MongoDatabase instance with a different read concern.

    readConcern

    the new ReadConcern for the collection

    returns

    a new MongoDatabase instance with the different ReadConcern

    Since

    1.1

  42. def withReadPreference(readPreference: ReadPreference): MongoDatabase

    Create a new MongoDatabase instance with a different read preference.

    Create a new MongoDatabase instance with a different read preference.

    readPreference

    the new { @link com.mongodb.ReadPreference} for the collection

    returns

    a new MongoDatabase instance with the different readPreference

  43. def withWriteConcern(writeConcern: WriteConcern): MongoDatabase

    Create a new MongoDatabase instance with a different write concern.

    Create a new MongoDatabase instance with a different write concern.

    writeConcern

    the new { @link com.mongodb.WriteConcern} for the collection

    returns

    a new MongoDatabase instance with the different writeConcern

  44. lazy val writeConcern: WriteConcern

    Get the write concern for the MongoDatabase.

    Get the write concern for the MongoDatabase.

    returns

    the { @link com.mongodb.WriteConcern}

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped