object StoreSemantics

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

Value Members

  1. case object Insert extends StoreSemantics with Product with Serializable

    If - and only if - the document does not exist, create it before applying the operation.

    If - and only if - the document does not exist, create it before applying the operation. If it does exist, fail the operation with DocumentAlreadyExistsException.

  2. case object Replace extends StoreSemantics with Product with Serializable

    If the document does not exist then do nothing, and fail the operation with DocumentDoesNotExistException.

  3. case object Upsert extends StoreSemantics with Product with Serializable

    Create the document does not exist, or do nothing if it does.

    Create the document does not exist, or do nothing if it does. Then apply the operation.