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

com.torodb.util.mgl.Mode Maven / Gradle / Ivy

Go to download

Locking code used within ToroDB. Supports multiple-level granularity, for different types of locks.

There is a newer version: 0.40
Show newest version

package com.torodb.util.mgl;

/**
 *
 */
public enum Mode {
    /**
     * Intention to share mode.
     * Incompatible with:
     * 
    *
  1. X
  2. *
*/ IS, /** * Intention to exclusive mode. * Incompatible with: *
    *
  1. S
  2. *
  3. X
  4. *
*/ IX, /** * Shared mode. * Incompatible with: *
    *
  1. IX
  2. *
  3. X
  4. *
*/ S, /** * Exclusive mode. * Incompatible with: *
    *
  1. IS
  2. *
  3. IX
  4. *
  5. S
  6. *
  7. X
  8. *
*/ X }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy