Packages

  • package root

    This is the documentation for the MongoDB Scala driver.

    This is the documentation for the MongoDB Scala driver.

    Driver structure

    The mongodb scala driver.

    To get started you need a MongoClient instance, either from a connection string or via a org.mongodb.scala.MongoClientSettings.

    Notable packages include:

    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package mongodb
    Definition Classes
    org
  • package scala

    The MongoDB Scala Driver package

    The MongoDB Scala Driver package

    Contains type aliases and companion objects to help when using the Scala API

    Definition Classes
    mongodb
    Since

    1.0

  • package model

    The model package containing models and options that help describe MongoCollection operations

    The model package containing models and options that help describe MongoCollection operations

    Definition Classes
    scala
  • package changestream
    Definition Classes
    model
  • F
  • FullDocument

object FullDocument

Change Stream fullDocument configuration.

Determines what to return for update operations when using a Change Stream. Defaults to FullDocument.DEFAULT. When set to FullDocument.UPDATE_LOOKUP, the change stream for partial updates will include both a delta describing the changes to the document as well as a copy of the entire document that was changed from *some time<*> after the change occurred.

Since

2.4

Note

Requires MongoDB 3.6 or greater

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FullDocument
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val DEFAULT: com.mongodb.client.model.changestream.FullDocument

    Default

    Default

    Returns the servers default value in the fullDocument field.

  2. val UPDATE_LOOKUP: com.mongodb.client.model.changestream.FullDocument

    Lookup

    Lookup

    The change stream for partial updates will include both a delta describing the changes to the document as well as a copy of the entire document that was changed from *some time* after the change occurred.

  3. def fromString(fullDocument: String): Try[FullDocument]

    Returns the FullDocument from the string value.

    Returns the FullDocument from the string value.

    fullDocument

    the string value.

    returns

    the read concern