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

eu.cedarsoft.Lockable Maven / Gradle / Ivy

The newest version!
package eu.cedarsoft;

import org.jetbrains.annotations.NotNull;

import java.util.concurrent.locks.ReadWriteLock;

/**
 * Implementations provide a lock
 */
public interface Lockable {
  /**
   * Returns the lock
   *
   * @return the lock
   */
  @NotNull
  ReadWriteLock getLock();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy