| Constructor and Description |
|---|
SimpleSemaphore() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLockOwner(java.sql.Connection conn,
java.lang.String lockName)
Determine whether the calling thread owns a lock on the identified
resource.
|
boolean |
obtainLock(java.sql.Connection conn,
java.lang.String lockName)
Grants a lock on the identified resource to the calling thread (blocking
until it is available).
|
void |
releaseLock(java.sql.Connection conn,
java.lang.String lockName)
Release the lock on the identified resource if it is held by the calling
thread.
|
boolean |
requiresConnection()
This Semaphore implementation does not use the database.
|
public boolean obtainLock(java.sql.Connection conn,
java.lang.String lockName)
obtainLock in interface Semaphoreconn - Database connection used to establish lock. Can be null if
Semaphore.requiresConnection() returns false.public void releaseLock(java.sql.Connection conn,
java.lang.String lockName)
releaseLock in interface Semaphoreconn - Database connection used to establish lock. Can be null if
Semaphore.requiresConnection() returns false.public boolean isLockOwner(java.sql.Connection conn,
java.lang.String lockName)
isLockOwner in interface Semaphoreconn - Database connection used to establish lock. Can be null if
Semaphore.requiresConnection() returns false.public boolean requiresConnection()
requiresConnection in interface SemaphoreSemaphore.isLockOwner(Connection, String),
Semaphore.obtainLock(Connection, String),
Semaphore.releaseLock(Connection, String)