Mercurial Hosting > luan
view src/goodjava/lucene/logging/SemaphoreLock.java @ 1881:c7c7d62f8c62
swing
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 07 Apr 2025 21:14:53 -0600 |
parents | 634f6765830e |
children |
line wrap: on
line source
package goodjava.lucene.logging; import java.util.concurrent.Semaphore; import java.util.concurrent.TimeUnit; public final class SemaphoreLock { private final Semaphore semaphore = new Semaphore(1); public void unlock() { semaphore.release(); } public boolean isLocked() { return semaphore.availablePermits() == 0; } public boolean tryLock(long time,TimeUnit unit) throws InterruptedException { return semaphore.tryAcquire(time,unit); } }