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. class Nearest extends ReadPreference with Taggable with Product1[List[Map[String, String]]] 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. class PrimaryPreferred extends ReadPreference with Taggable with Product1[List[Map[String, String]]] with Serializable

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

  3. class Secondary extends ReadPreference with Taggable with Product1[List[Map[String, String]]] with Serializable

    Reads only from any secondary.

  4. class SecondaryPreferred extends ReadPreference with Taggable with Product1[List[Map[String, String]]] 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() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. 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).

  13. val nearest: Nearest

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

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

    Reads only from the primary.

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

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

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

  18. val primaryPreferred: PrimaryPreferred

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

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

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

  20. val secondary: Secondary

    Reads only from any secondary.

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

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

  22. val secondaryPreferred: SecondaryPreferred

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

  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(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. object Nearest extends AbstractFunction1[List[Map[String, String]], Nearest] with Serializable
  29. object Primary extends ReadPreference

    Reads only from the primary.

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

  30. object PrimaryPreferred extends AbstractFunction1[List[Map[String, String]], PrimaryPreferred] with Serializable
  31. object Secondary extends AbstractFunction1[List[Map[String, String]], Secondary] with Serializable
  32. object SecondaryPreferred extends AbstractFunction1[List[Map[String, String]], SecondaryPreferred] with Serializable
  33. object Taggable

    Extractor for taggable read preference.

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 AnyRef

Inherited from Any

Ungrouped