6.6.8.1.2.4. TypeOperation

public enum TypeOperation

A Quasardb batch operation type. Available operations are :

  • GET : get an entry.
  • PUT : put an entry.
  • UPDATE : update an entry.
  • REMOVE : remove an entry.
  • CAS : atomically compare a value with comparand and update if it matches.
  • GET_UPDATE : atomically update the value of an existing entry and return the old value.
  • GET_REMOVE : atomically get the entry associated with the supplied key and remove it.
  • REMOVE_IF : delete the object associated whith a key if the object is equal to comparand.
  • NO_OP : no operation.
Author:© quasardb - 2014

6.6.8.1.2.4.1. Enum Constants

6.6.8.1.2.4.1.1. CAS

public static final TypeOperation CAS

6.6.8.1.2.4.1.2. GET

public static final TypeOperation GET

6.6.8.1.2.4.1.3. GET_REMOVE

public static final TypeOperation GET_REMOVE

6.6.8.1.2.4.1.4. GET_UPDATE

public static final TypeOperation GET_UPDATE

6.6.8.1.2.4.1.5. NO_OP

public static final TypeOperation NO_OP

6.6.8.1.2.4.1.6. PUT

public static final TypeOperation PUT

6.6.8.1.2.4.1.7. REMOVE

public static final TypeOperation REMOVE

6.6.8.1.2.4.1.8. REMOVE_IF

public static final TypeOperation REMOVE_IF

6.6.8.1.2.4.1.9. UPDATE

public static final TypeOperation UPDATE