All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.documentdb.OperationKind Maven / Gradle / Ivy

package com.microsoft.azure.documentdb;

/**
 * Last writer wins conflict resolution mode
 * 

* These are the operation types resulted in a version conflict on a resource. * When a version conflict occurs during an async operation, retrieving the {@link Conflict} instance will allow you * to determine which resource and operation caused the conflict. */ public enum OperationKind { /* * An invalid operation. */ invalid, /* * A create operation. */ create, /* * An replace operation. */ replace, /* * A delete operation. */ delete, /* * This operation does not apply to Conflict. */ read }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy