Packages

  • package root
    Definition Classes
    root
  • package reactivemongo
    Definition Classes
    root
  • package bson
    Definition Classes
    reactivemongo
  • object Macros

    Macros for generating BSONReader and BSONWriter implementations for case at compile time.

    Macros for generating BSONReader and BSONWriter implementations for case at compile time. Invoking these macros is equivalent to writing anonymous class implementations by hand.

    import reactivemongo.bson.Macros
    
    case class Person(name: String, surname: String)
    implicit val personHandler = Macros.handler[Person]
    Definition Classes
    bson
    See also

    Macros.Options for specific options

  • object Placeholder

    Only for internal purposes

    Only for internal purposes

    Definition Classes
    Macros
  • Handler

implicit object Handler extends BSONHandler[BSONDocument, Placeholder]

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

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 afterRead[U](f: (Placeholder) ⇒ U): BSONReader[BSONDocument, U]
    Definition Classes
    BSONReader
  5. final def afterWrite[U <: BSONValue](f: (BSONDocument) ⇒ U): BSONWriter[Placeholder, U]
    Definition Classes
    BSONWriter
  6. def as[R](to: (Placeholder) ⇒ R, from: (R) ⇒ Placeholder): BSONHandler[BSONDocument, R]
    Definition Classes
    BSONHandler
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. final def beforeRead[U <: BSONValue](f: (U) ⇒ BSONDocument): BSONReader[U, Placeholder]
    Definition Classes
    BSONReader
  9. final def beforeWrite[U](f: (U) ⇒ Placeholder): BSONWriter[U, BSONDocument]
    Definition Classes
    BSONWriter
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def read(bson: BSONDocument): Placeholder
    Definition Classes
    Handler → BSONReader
  21. def readOpt(bson: BSONDocument): Option[Placeholder]
    Definition Classes
    BSONReader
  22. def readTry(bson: BSONDocument): Try[Placeholder]
    Definition Classes
    BSONReader
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  28. def write(pl: Placeholder): BSONDocument
    Definition Classes
    Handler → BSONWriter
  29. def writeOpt(t: Placeholder): Option[BSONDocument]
    Definition Classes
    BSONWriter
  30. def writeTry(t: Placeholder): Try[BSONDocument]
    Definition Classes
    BSONWriter

Inherited from AnyRef

Inherited from Any

Ungrouped