![JAR search and dependency download from the Maven repository](/logo.png)
com.torodb.util.mgl.Mode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multiple-granularity-locking Show documentation
Show all versions of multiple-granularity-locking Show documentation
Locking code used within ToroDB. Supports multiple-level granularity, for different types of locks.
package com.torodb.util.mgl;
/**
*
*/
public enum Mode {
/**
* Intention to share mode.
* Incompatible with:
*
* - X
*
*/
IS,
/**
* Intention to exclusive mode.
* Incompatible with:
*
* - S
* - X
*
*/
IX,
/**
* Shared mode.
* Incompatible with:
*
* - IX
* - X
*
*/
S,
/**
* Exclusive mode.
* Incompatible with:
*
* - IS
* - IX
* - S
* - X
*
*/
X
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy