Object

reactivemongo.bson

Macros

Related Doc: package bson

Permalink

object Macros

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]
See also

Macros.Options for specific options

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

Type Members

  1. final class Placeholder extends AnyRef

    Permalink

    Only for internal purposes

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Annotations

    Permalink

    Annotations to use on case classes that are being processed by macros.

  5. object Options

    Permalink

    Methods with 'Opts' postfix will take additional options in the form of type parameters that will customize behaviour of the macros during compilation.

  6. object Placeholder

    Permalink

    Only for internal purposes

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. macro def handler[A]: BSONDocumentHandler[A]

    Permalink

    Creates an instance of BSONReader and BSONWriter for case class A

  14. macro def handlerOpts[A, Opts <: Default]: BSONDocumentHandler[A]

    Permalink

    Creates an instance of BSONReader and BSONWriter for case class A, and takes additional options.

  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. macro def reader[A]: BSONDocumentReader[A]

    Permalink

    Creates an instance of BSONReader for case class A

    Creates an instance of BSONReader for case class A

    See also

    Macros

  21. macro def readerOpts[A, Opts <: Default]: BSONDocumentReader[A]

    Permalink

    Creates an instance of BSONReader for case class A and takes additional options

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. macro def writer[A]: BSONDocumentWriter[A]

    Permalink

    Creates an instance of BSONWriter for case class A

  28. macro def writerOpts[A, Opts <: Default]: BSONDocumentWriter[A]

    Permalink

    Creates an instance of BSONWriter for case class A and takes additional options

Inherited from AnyRef

Inherited from Any

Ungrouped