Packages

object HandlerConverters extends HandlerConverters

Linear Supertypes
HandlerConverters, LowPriorityHandlerConverters1, LowPriorityHandlerConverters2, LowPriorityHandlerConverters3, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HandlerConverters
  2. HandlerConverters
  3. LowPriorityHandlerConverters1
  4. LowPriorityHandlerConverters2
  5. LowPriorityHandlerConverters3
  6. AnyRef
  7. 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. implicit final def fromDocumentHandler[T](h: BSONDocumentHandler[T]): bson.BSONDocumentHandler[T]

    Implicit conversion from new BSONDocumentHandler to the legacy API.

    Implicit conversion from new BSONDocumentHandler to the legacy API.

    import reactivemongo.api.bson.compat.HandlerConverters.fromDocumentHandler
    
    def bar[T](lh: reactivemongo.api.bson.BSONDocumentHandler[T]) = {
      val h: reactivemongo.bson.BSONDocumentHandler[T] = lh
      h
    }
    Definition Classes
    HandlerConverters
  9. implicit final def fromDocumentReader[T](r: BSONDocumentReader[T]): bson.BSONDocumentReader[T]

    import reactivemongo.api.bson.compat.HandlerConverters.fromDocumentReader
    
    def foo[T](r: reactivemongo.api.bson.BSONDocumentReader[T]) = {
      val lr: reactivemongo.bson.BSONDocumentReader[T] = r
      lr
    }
    Definition Classes
    LowPriorityHandlerConverters2
  10. implicit final def fromDocumentWriter[T](w: BSONDocumentWriter[T]): bson.BSONDocumentWriter[T]

    import reactivemongo.api.bson.compat.HandlerConverters.fromDocumentWriter
    
    def bar[T](lw: reactivemongo.api.bson.BSONDocumentWriter[T]) = {
      val w: reactivemongo.bson.BSONDocumentWriter[T] = lw
      w
    }
    Definition Classes
    LowPriorityHandlerConverters2
  11. implicit final def fromHandler[T](h: BSONHandler[T]): bson.BSONHandler[bson.BSONValue, T]
    Definition Classes
    LowPriorityHandlerConverters1
  12. implicit final def fromReader[T](r: BSONReader[T]): bson.BSONReader[bson.BSONValue, T]
    Definition Classes
    LowPriorityHandlerConverters3
  13. implicit final def fromWriter[T](w: BSONWriter[T]): bson.BSONWriter[T, bson.BSONValue]
    Definition Classes
    LowPriorityHandlerConverters3
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def legacyDocumentHandler[T](implicit r: bson.BSONDocumentReader[T], w: bson.BSONDocumentWriter[T]): bson.BSONDocumentHandler[T]
    Definition Classes
    LowPriorityHandlerConverters1
  18. implicit def legacyReaderNewValue[B <: BSONValue, L](implicit r: BSONDocumentReader[B], conv: (B) => L): bson.BSONDocumentReader[L]

    Based on the compatibility conversions, provides instances of legacy BSONDocumentReader for the new BSON value API.

    Based on the compatibility conversions, provides instances of legacy BSONDocumentReader for the new BSON value API.

    Definition Classes
    HandlerConverters
  19. implicit def legacyWriterNewValue[B <: BSONValue, L](implicit w: BSONDocumentWriter[B], conv: (L) => B): bson.BSONDocumentWriter[L]

    Based on the compatibility conversions, provides instances of legacy BSONDocumentWriter for the new BSON value API.

    Based on the compatibility conversions, provides instances of legacy BSONDocumentWriter for the new BSON value API.

    Definition Classes
    HandlerConverters
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def providedDocumentHandler[T](implicit r: BSONDocumentReader[T], w: BSONDocumentWriter[T]): BSONDocumentHandler[T]

    Provided there are both a BSONDocumentReader and a BSONDocumentWriter for the given type T, a BSONDocumentHandler is materialized.

    Provided there are both a BSONDocumentReader and a BSONDocumentWriter for the given type T, a BSONDocumentHandler is materialized.

    Definition Classes
    LowPriorityHandlerConverters1
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. implicit final def toDocumentHandler[T](h: bson.BSONDocumentHandler[T]): BSONDocumentHandler[T]

    Implicit conversion from legacy BSONDocumentHandler to the new API.

    Implicit conversion from legacy BSONDocumentHandler to the new API.

    import reactivemongo.api.bson.compat.HandlerConverters.toDocumentHandler
    
    def foo[T](lh: reactivemongo.bson.BSONDocumentHandler[T]) = {
      val h: reactivemongo.api.bson.BSONDocumentHandler[T] = lh
      h
    }
    Definition Classes
    HandlerConverters
  26. implicit final def toDocumentReader[T](implicit r: bson.BSONDocumentReader[T]): BSONDocumentReader[T]

    Provided there is a legacy document reader, resolve a new one.

    Provided there is a legacy document reader, resolve a new one.

    Definition Classes
    LowPriorityHandlerConverters2
  27. implicit final def toDocumentReaderConv[T](r: bson.BSONDocumentReader[T]): BSONDocumentReader[T]

    import reactivemongo.api.bson.compat.HandlerConverters.toDocumentReaderConv
    
    def lorem[T](lw: reactivemongo.bson.BSONDocumentReader[T]) = {
      val w: reactivemongo.api.bson.BSONDocumentReader[T] = lw
      w
    }
    Definition Classes
    LowPriorityHandlerConverters2
  28. implicit final def toDocumentWriter[T](implicit w: bson.BSONDocumentWriter[T]): BSONDocumentWriter[T]

    Provided there is a legacy document writer, resolve a new one.

    Provided there is a legacy document writer, resolve a new one.

    Definition Classes
    LowPriorityHandlerConverters2
  29. implicit final def toDocumentWriterConv[T](w: bson.BSONDocumentWriter[T]): BSONDocumentWriter[T]

    import reactivemongo.api.bson.compat.HandlerConverters.toDocumentWriterConv
    
    def foo[T](lw: reactivemongo.bson.BSONDocumentWriter[T]) = {
      val w: reactivemongo.api.bson.BSONDocumentWriter[T] = lw
      w
    }
    Definition Classes
    LowPriorityHandlerConverters2
  30. implicit final def toHandler[T, B <: bson.BSONValue](h: bson.BSONHandler[B, T])(implicit bc: ClassTag[B]): BSONHandler[T]
    Definition Classes
    LowPriorityHandlerConverters1
  31. implicit final def toReader[T, B <: bson.BSONValue](r: bson.BSONReader[B, T])(implicit bc: ClassTag[B]): BSONReader[T]
    Definition Classes
    LowPriorityHandlerConverters3
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. implicit final def toWriter[T](w: bson.BSONWriter[T, _ <: bson.BSONValue]): BSONWriter[T]
    Definition Classes
    LowPriorityHandlerConverters3
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from HandlerConverters

Inherited from LowPriorityHandlerConverters1

Inherited from LowPriorityHandlerConverters2

Inherited from LowPriorityHandlerConverters3

Inherited from AnyRef

Inherited from Any

Ungrouped