com.mongodb.casbah

WriteConcern

object WriteConcern

Helper class for creating WriteConcern instances

Source
WriteConcern.scala
Since

2.0

See also

com.mongodb.WriteConcern

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. WriteConcern
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
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 FsyncSafe: WriteConcern

    Exceptions are raised for network issues and server errors; Write operations wait for the server to flush data to disk

  7. val JournalSafe: WriteConcern

    Exceptions are raised for network issues, and server errors; the write operation waits for the server to group commit to the journal file on disk

  8. val Majority: WriteConcern

    Exceptions are raised for network issues and server errors; waits on a majority of servers for the write operation

  9. val None: WriteConcern

    No exceptions are raised, even for network issues

  10. val Normal: WriteConcern

    Exceptions are raised for network issues but not server errors.

  11. val ReplicasSafe: WriteConcern

    Exceptions are raised for network issues and server errors; waits for at least 2 servers for the write operation.

  12. val Safe: WriteConcern

    Exceptions are raised for network issues and server errors; waits on a server for the write operation

  13. def apply(w: Int, wTimeout: Int = 0, fsync: Boolean = false, j: Boolean = false, continueInsertOnError: Boolean = false): WriteConcern

    Create a new WriteConcern object.

    Create a new WriteConcern object.

    w represents # of servers:

    • w=-1 None, no checking is done
    • w=0 None, network socket errors raised
    • w=1 Checks server for errors as well as network socket errors raised
    • w>1 Checks servers (w) for errors as well as network socket errors raised
    w

    (Int) Specifies the number of servers to wait for on the write operation, and exception raising behavior. Defaults to 0

    wTimeout

    (Int) Specifies the number MS to wait for the server operations to write. Defaults to 0 (no timeout)

    fsync

    (Boolean) Indicates whether write operations should require a sync to disk. Defaults to False

    j

    whether writes should wait for a journaling group commit

  14. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  15. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  23. final def notify(): Unit

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

    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  27. def valueOf(name: String): WriteConcern

    Get the WriteConcern constants by name: NONE, NORMAL, SAFE, MAJORITY, FSYNC_SAFE, JOURNAL_SAFE, REPLICAS_SAFE.

    Get the WriteConcern constants by name: NONE, NORMAL, SAFE, MAJORITY, FSYNC_SAFE, JOURNAL_SAFE, REPLICAS_SAFE. (matching is done case insensitively)

    NOTE: This only supports the java versions, no support for the local scala aliases.

  28. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. def withRule(w: String, wTimeout: Int = 0, fsync: Boolean = false, j: Boolean = false, continueInsertOnError: Boolean = false): WriteConcern

    Create a new WriteConcern object.

    Create a new WriteConcern object.

    w is a String representing a valid getLastErrorMode rule (or "majority")

    w

    (Int) Specifies the getLastErrorMode to apply to the write

    wTimeout

    (Int) Specifies the number MS to wait for the server operations to write. Defaults to 0 (no timeout)

    fsync

    (Boolean) Indicates whether write operations should require a sync to disk. Defaults to False

    j

    whether writes should wait for a journaling group commit

Inherited from AnyRef

Inherited from Any

Ungrouped