Packages

  • package root
    Definition Classes
    root
  • package reactivemongo
    Definition Classes
    root
  • package api
    Definition Classes
    reactivemongo
  • package bson

    import reactivemongo.api.bson._
    
    // { "name": "Johny", "surname": "Doe", "age": 28, "months": [1, 2, 3] }
    document ++ ("name" -> "Johny") ++ ("surname" -> "Doe") ++
    ("age" -> 28) ++ ("months" -> array(1, 2, 3))
    
    // { "_id": generatedId, "name": "Jane", "surname": "Doe", "age": 28,
    //   "months": [1, 2, 3], "details": { "salary": 12345,
    //   "inventory": ["foo", 7.8, 0, false] } }
    document ++ ("_id" -> generateId, "name" -> "Jane", "surname" -> "Doe",
      "age" -> 28, "months" -> array(1, 2, 3),
      "details" -> document(
        "salary" -> 12345L, "inventory" -> array("foo", 7.8, 0L, false)))
    Definition Classes
    api
  • object BSONBooleanLike
    Definition Classes
    bson
  • Handler

implicit object Handler extends BSONReader[BSONBooleanLike] with BSONWriter[BSONBooleanLike] with SafeBSONWriter[BSONBooleanLike]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Handler
  2. SafeBSONWriter
  3. BSONWriter
  4. BSONReader
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. def afterRead[U](f: (BSONBooleanLike) => U): BSONReader[U]

    Returns a BSONReader that returns the result of applying f on the result of this reader.

    Returns a BSONReader that returns the result of applying f on the result of this reader.

    f

    the function to apply

    Definition Classes
    BSONReader
  5. final def afterWrite(f: PartialFunction[BSONValue, BSONValue]): BSONWriter[BSONBooleanLike]

    Prepares a BSON writer that returns the result of applying f on the BSON value from this writer.

    Prepares a BSON writer that returns the result of applying f on the BSON value from this writer.

    If the f function is not defined for a BSONValue, it will results in a Failure.

    f

    the partial function to apply

    Definition Classes
    BSONWriter
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. final def beforeRead(f: PartialFunction[BSONValue, BSONValue]): BSONReader[BSONBooleanLike]
    Definition Classes
    BSONReader
  8. def beforeWrite[U](f: (U) => BSONBooleanLike): BSONWriter[U]

    Prepares a BSON writer that converts the input before calling the current writer.

    Prepares a BSON writer that converts the input before calling the current writer.

    f

    the function apply the U input value to convert at T value used to the current writer

    Definition Classes
    BSONWriter
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def readOpt(bson: BSONValue): Option[BSONBooleanLike]

    Tries to produce an instance of T from the bson value, returns None if an error occurred.

    Tries to produce an instance of T from the bson value, returns None if an error occurred.

    Definition Classes
    HandlerBSONReader
  20. def readTry(bson: BSONValue): Try[BSONBooleanLike]

    Tries to produce an instance of T from the bson value.

    Tries to produce an instance of T from the bson value.

    Definition Classes
    HandlerBSONReader
  21. def safeWrite(b: BSONBooleanLike): BSONValue
    Definition Classes
    Handler → SafeBSONWriter
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def widen[U >: BSONBooleanLike]: BSONReader[U]

    Widen this read for compatible type U.

    Widen this read for compatible type U.

    Definition Classes
    BSONReader
  28. def writeOpt(t: BSONBooleanLike): Option[BSONValue]

    Tries to produce a BSON value from an instance of T, returns None if an error occurred.

    Tries to produce a BSON value from an instance of T, returns None if an error occurred.

    Definition Classes
    BSONWriter
  29. final def writeTry(value: BSONBooleanLike): Success[BSONValue]
    Definition Classes
    SafeBSONWriter

Inherited from SafeBSONWriter[BSONBooleanLike]

Inherited from BSONWriter[BSONBooleanLike]

Inherited from BSONReader[BSONBooleanLike]

Inherited from AnyRef

Inherited from Any

Ungrouped