use of org.apache.geode.internal.cache.PartitionedRegion.BucketLock in project geode by apache.
the class PartitionedRegionDataStore method releaseRedundancyLock.
public void releaseRedundancyLock(Object lock) {
try {
} finally {
PartitionedRegion.BucketLock bl = (BucketLock) lock;
bl.unlock();
}
}
Aggregations