com.mongodb.casbah

ReadPreference

object ReadPreference extends AnyRef

Helper class for creating ReadPreference instances

Source
ReadPreference.scala
Since

2.2

See also

JReadPreference

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

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. val Nearest: ReadPreference

    Reads come from nearest node.

  7. val Primary: ReadPreference

    Reads come only through the Primary

  8. val Secondary: ReadPreference

    Reads come from Secondary servers (equiv of old SlaveOK)

  9. val SecondaryPreferred: ReadPreference

    Reads come from secondary if available, otherwise from primary

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  19. def nearest(tagSetList: List[TagSet]): ReadPreference

    returns

    ReadPreference which reads nearest node respective of tags

  20. def nearest(tagSet: TagSet): ReadPreference

    returns

    ReadPreference which reads nearest node respective of tags

  21. final def notify(): Unit

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

    Definition Classes
    AnyRef
  23. def primaryPreferred(tagSetList: List[TagSet]): ReadPreference

    returns

    ReadPreference with reads primary if available

  24. def primaryPreferred(tagSet: TagSet): ReadPreference

    returns

    ReadPreference with reads primary if available

  25. def primaryPreferred: ReadPreference

    returns

    ReadPreference with reads primary if available

  26. def secondary(tagSetList: List[TagSet]): ReadPreference

    returns

    ReadPreference which returns secondary respective of tags

  27. def secondary(tagSet: TagSet): ReadPreference

    returns

    ReadPreference which returns secondary respective of tags

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

Deprecated Value Members

  1. def nearest(firstTagSet: DBObject, remainingTagSets: DBObject*): TaggableReadPreference

    returns

    ReadPreference which reads nearest node respective of tags

    Annotations
    @deprecated @SuppressWarnings()
    Deprecated

    (Since version 2.8) This will be removed in a future release

  2. def primaryPreferred(firstTagSet: DBObject, remainingTagSets: DBObject*): TaggableReadPreference

    returns

    ReadPreference which reads primary if available, otherwise a secondary respective of tags.

    Annotations
    @deprecated @SuppressWarnings()
    Deprecated

    (Since version 2.8) This will be removed in a future release

  3. def secondary(firstTagSet: DBObject, remainingTagSets: DBObject*): TaggableReadPreference

    returns

    ReadPreference which returns secondary respective of tags

    Annotations
    @deprecated @SuppressWarnings()
    Deprecated

    (Since version 2.8) This will be removed in a future release

  4. def secondaryPreferred(firstTagSet: DBObject, remainingTagSets: DBObject*): TaggableReadPreference

    returns

    ReadPreference which reads secondary if available respective of tags, otherwise from primary irrespective of tags

    Annotations
    @deprecated @SuppressWarnings()
    Deprecated

    (Since version 2.8) This will be removed in a future release

Inherited from AnyRef

Inherited from Any