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

org.infinispan.lucene.impl.ObtainableLock Maven / Gradle / Ivy

package org.infinispan.lucene.impl;

import java.io.IOException;

/**
 * Common interface between Lock implementations having an obtain method,
 * as it was supported in older Lucene versions and currently still useful for our design.
 */
public interface ObtainableLock {

   boolean obtain() throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy