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

Value Members

  1. 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. object Replace extends StoreSemantics with Product with Serializable

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

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