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

org.infinispan.util.concurrent.locks.ExtendedLockPromise Maven / Gradle / Ivy

package org.infinispan.util.concurrent.locks;

/**
 * An extended {@link LockPromise} interface that allows a better control over it.
 *
 * @author Pedro Ruivo
 * @since 8.0
 */
public interface ExtendedLockPromise extends LockPromise {

   /**
    * It cancels the {@link LockPromise} if possible.
    *
    * @param cause the cancellation cause. The possible values are {@link LockState#DEADLOCKED} and {@link
    *              LockState#TIMED_OUT}.
    * @throws IllegalArgumentException if the argument {@code cause} is not valid.
    */
   void cancel(LockState cause);

   /**
    * @return the lock owner associated to this {@link LockPromise}.
    */
   Object getRequestor();

   /**
    * @return the current lock owner.
    */
   Object getOwner();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy