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

com.netflix.astyanax.recipes.queue.ShardLockManager Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy