![JAR search and dependency download from the Maven repository](/logo.png)
com.netflix.astyanax.recipes.queue.ShardLockManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astyanax-queue Show documentation
Show all versions of astyanax-queue Show documentation
astyanax-queue developed by Netflix
package com.netflix.astyanax.recipes.queue;
import com.netflix.astyanax.recipes.locks.BusyLockException;
/**
* Interface for a queue shard lock manager.
*
* @author pbhattacharyya
*/
public interface ShardLockManager {
ShardLock acquireLock(String shardName) throws BusyLockException;
void releaseLock(ShardLock lock);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy