reactivemongo.api

ReadPreference

object ReadPreference

ReadPreference utilities and factories.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ReadPreference
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Nearest(tags: List[Map[String, String]]) extends ReadPreference with Taggable with Product with Serializable

    Reads from the faster node (e.

  2. case class PrimaryPreferred(tags: List[Map[String, String]]) extends ReadPreference with Taggable with Product with Serializable

    Reads from the primary if it is available, or secondaries if it is not.

  3. case class Secondary(tags: List[Map[String, String]]) extends ReadPreference with Taggable with Product with Serializable

    Reads only from any secondary.

  4. case class SecondaryPreferred(tags: List[Map[String, String]]) extends ReadPreference with Taggable with Product with Serializable

    Reads from any secondary, or from the primary if they are not available.

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object Primary extends ReadPreference

    Reads only from the primary.

  7. object Taggable

    Extractor for taggable read preference.

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

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

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

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

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

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

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

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

    Definition Classes
    AnyRef
  17. def nearest[T](tagSet: List[Map[String, String]]): Nearest

    Reads from the fastest node (e.

    Reads from the fastest node (e.g. the node which replies faster than all others) that has the given tagSet, regardless its status (primary or secondary).

  18. val nearest: Nearest

    Reads from the nearest node (the node which replies faster than all others), regardless its status (primary or secondary).

  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. def primary: Primary.type

    Reads only from the primary.

    Reads only from the primary. This is the default choice.

  22. def primaryPreferred(tagSet: List[Map[String, String]]): PrimaryPreferred

    Reads from any node that has the given tagSet in the replica set (preferably the primary).

  23. val primaryPreferred: PrimaryPreferred

    Reads from the primary if it is available, or secondaries if it is not.

  24. def secondary(tagSet: List[Map[String, String]]): Secondary

    Reads from a secondary that has the given tagSet in the replica set.

  25. val secondary: Secondary

    Reads only from any secondary.

  26. def secondaryPreferred(tagSet: List[Map[String, String]]): SecondaryPreferred

    Reads from any node that has the given tagSet in the replica set (preferably a secondary).

  27. val secondaryPreferred: SecondaryPreferred

    Reads from any secondary, or from the primary if they are not available.

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

    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped