object StoreSemantics
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- StoreSemantics
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
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
. -
object
Replace extends StoreSemantics with Product with Serializable
If the document does not exist then do nothing, and fail the operation with
DocumentDoesNotExistException
. -
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.