com.mongodb.casbah

WriteConcern

object WriteConcern

Helper class for creating WriteConcern instances

Since

2.0

See also

JWriteConcern

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 Acknowledged: WriteConcern

    Write operations that use this write concern will wait for acknowledgement from the primary server before returning.

    Write operations that use this write concern will wait for acknowledgement from the primary server before returning. Exceptions are raised for network issues, and server errors.

    Since

    2.7

  7. val FsyncSafe: WriteConcern

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

  8. val Fsynced: WriteConcern

    Exceptions are raised for network issues, and server errors; the write operation waits for the server to flush the data to disk.

    Exceptions are raised for network issues, and server errors; the write operation waits for the server to flush the data to disk.

    Since

    2.7

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

  10. val Journaled: 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.

    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.

    Since

    2.7

  11. val Majority: WriteConcern

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

  12. val Normal: WriteConcern

    Exceptions are raised for network issues but not server errors.

  13. val ReplicaAcknowledged: WriteConcern

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

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

    Since

    2.7

  14. val ReplicasSafe: WriteConcern

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

  15. val Safe: WriteConcern

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

  16. val Unacknowledged: WriteConcern

    Write operations that use this write concern will return as soon as the message is written to the socket.

    Write operations that use this write concern will return as soon as the message is written to the socket. Exceptions are raised for network issues, but not server errors.

    Since

    2.7

  17. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  18. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. def valueOf(name: String): Option[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.

  31. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped