object ReadPreference

ReadPreference utilities and factories.

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

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.g.

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

  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: 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()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def nearest[T](tagSet: List[Map[String, String]]): Nearest

    Reads from the fastest node (e.g.

    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).

  14. val nearest: Nearest

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

  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def primary: Primary.type

    Reads only from the primary.

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

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

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

  19. val primaryPreferred: PrimaryPreferred

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

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

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

  21. val secondary: Secondary

    Reads only from any secondary.

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

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

  23. val secondaryPreferred: SecondaryPreferred

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

  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. object Primary extends ReadPreference

    Reads only from the primary.

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

  30. object Taggable

    Extractor for taggable read preference.

Inherited from AnyRef

Inherited from Any

Ungrouped