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

org.xbib.io.pool.jdbc.util.BagEntry Maven / Gradle / Ivy

The newest version!
package org.xbib.io.pool.jdbc.util;

public interface BagEntry {
    int STATE_NOT_IN_USE = 0;
    int STATE_IN_USE = 1;
    int STATE_REMOVED = -1;
    int STATE_RESERVED = -2;

    boolean compareAndSet(int expectState, int newState);

    void setState(int newState);

    int getState();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy