|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.concurrent.Semaphore
java.util.concurrent.FairSemaphore
A semaphore guaranteeing that threads invoking any of the acquire methods are allocated permits in the order in
which their invocation of those methods was processed
(first-in-first-out; FIFO). Note that FIFO ordering necessarily
applies to specific internal points of execution within these
methods. So, it is possible for one thread to invoke
acquire before another, but reach the ordering point after
the other, and similarly upon return from the method.
Because permits are allocated in-order, this class also provides
convenience methods to acquire and release multiple permits at a time.
| Constructor Summary | |
FairSemaphore(long permits)
Construct a FairSemaphore with the given number of permits. |
|
| Method Summary | |
void |
acquire()
Acquires a permit from this semaphore, blocking until one is available, or the thread is interrupted. |
void |
acquire(long permits)
Acquires the given number of permits from this semaphore, blocking until all are available, or the thread is interrupted. |
void |
acquireUninterruptibly()
Acquires a permit from this semaphore, blocking until one is available. |
void |
acquireUninterruptibly(long permits)
Acquires the given number of permits from this semaphore, blocking until all are available. |
void |
release()
Releases a permit, returning it to the semaphore. |
void |
release(long permits)
Releases the given number of permits, returning them to the semaphore. |
boolean |
tryAcquire()
Acquires a permit from this semaphore, only if one is available at the time of invocation. |
boolean |
tryAcquire(long permits)
Acquires the given number of permits from this semaphore, only if all are available at the time of invocation. |
boolean |
tryAcquire(long permits,
long timeout,
TimeUnit unit)
Acquires the given number of permits from this semaphore, if all become available within the given waiting time and the current thread has not been interrupted. |
boolean |
tryAcquire(long timeout,
TimeUnit unit)
Acquires a permit from this semaphore, if one becomes available within the given waiting time and the current thread has not been interrupted. |
| Methods inherited from class java.util.concurrent.Semaphore |
availablePermits |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public FairSemaphore(long permits)
permits - the initial number of permits available| Method Detail |
public void acquire()
throws java.lang.InterruptedException
interrupted.
Acquires a permit, if one is available and returns immediately, reducing the number of available permits by one.
If no permit is available then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of two things happens:
release() method for this
semaphore and the current thread is next to be assigned a permit; or
interrupts the current
thread.
If the current thread:
interrupted while waiting
for a permit,
InterruptedException is thrown and the current thread's
interrupted status is cleared.
acquire in class Semaphorejava.lang.InterruptedException - if the current thread is interruptedThread.interrupt()public void acquireUninterruptibly()
Acquires a permit, if one is available and returns immediately, reducing the number of available permits by one.
If no permit is available then the current thread becomes
disabled for thread scheduling purposes and lies dormant until
some other thread invokes the release() method for this
semaphore and the current thread is next to be assigned a permit.
If the current thread
is interrupted while waiting
for a permit then it will continue to wait, but the time at which
the thread is assigned a permit may change compared to the time it
would have received the permit had no interruption occurred. When the
thread does return from this method its interrupt status will be set.
acquireUninterruptibly in class Semaphorepublic boolean tryAcquire()
Acquires a permit, if one is available and returns immediately, with the value true, reducing the number of available permits by one.
If no permit is available then this method will return immediately with the value false.
tryAcquire in class Semaphore
public boolean tryAcquire(long timeout,
TimeUnit unit)
throws java.lang.InterruptedException
interrupted.
Acquires a permit, if one is available and returns immediately, with the value true, reducing the number of available permits by one.
If no permit is available then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happens:
release() method for this
semaphore and the current thread is next to be assigned a permit; or
interrupts the current
thread; or
If a permit is acquired then the value true is returned.
If the current thread:
interrupted while waiting to acquire
a permit,
InterruptedException is thrown and the current thread's
interrupted status is cleared.
If the specified waiting time elapses then the value false is returned. If the time is less than or equal to zero, the method will not wait at all.
tryAcquire in class Semaphoretimeout - the maximum time to wait for a permitunit - the time unit of the timeout argument.
java.lang.InterruptedException - if the current thread is interruptedThread.interrupt()public void release()
Releases a permit, increasing the number of available permits by one. If any threads are blocking trying to acquire a permit, then one is selected and given the permit that was just released. That thread is re-enabled for thread scheduling purposes.
There is no requirement that a thread that releases a permit must
have acquired that permit by calling acquire().
Correct usage of a semaphore is established by programming convention
in the application.
release in class Semaphore
public void acquire(long permits)
throws java.lang.InterruptedException
interrupted.
Acquires the given number of permits, if they are available, and returns immediately, reducing the number of available permits by the given amount.
If insufficient permits are available then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of two things happens:
release
methods for this semaphore, the current thread is next to be assigned
permits and the number of available permits satisfies this request; or
interrupts the current
thread.
If the current thread:
interrupted while waiting
for a permit,
InterruptedException is thrown and the current thread's
interrupted status is cleared.
Any permits that were to be assigned to this thread, are instead
assigned to the next waiting thread(s), as if
they had been made available by a call to release().
permits - the number of permits to acquire
java.lang.InterruptedException - if the current thread is interrupted
java.lang.IllegalArgumentException - if permits less than zero.Thread.interrupt()public void acquireUninterruptibly(long permits)
Acquires the given number of permits, if they are available, and returns immediately, reducing the number of available permits by the given amount.
If insufficient permits are available then the current thread becomes
disabled for thread scheduling purposes and lies dormant until
some other thread invokes one of the release
methods for this semaphore, the current thread is next to be assigned
permits and the number of available permits satisfies this request.
If the current thread
is interrupted while waiting
for permits then it will continue to wait and its position in the
queue is not affected. When the
thread does return from this method its interrupt status will be set.
permits - the number of permits to acquire
java.lang.IllegalArgumentException - if permits less than zero.public boolean tryAcquire(long permits)
Acquires the given number of permits, if they are available, and returns immediately, with the value true, reducing the number of available permits by the given amount.
If insufficient permits are available then this method will return immediately with the value false and the number of available permits is unchanged.
permits - the number of permits to acquire
java.lang.IllegalArgumentException - if permits less than zero.
public boolean tryAcquire(long permits,
long timeout,
TimeUnit unit)
throws java.lang.InterruptedException
interrupted.
Acquires the given number of permits, if they are available and returns immediately, with the value true, reducing the number of available permits by the given amount.
If insufficient permits are available then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happens:
release
methods for this semaphore, the current thread is next to be assigned
permits and the number of available permits satisfies this request; or
interrupts the current
thread; or
If the permits are acquired then the value true is returned.
If the current thread:
interrupted while waiting to acquire
the permits,
InterruptedException is thrown and the current thread's
interrupted status is cleared.
Any permits that were to be assigned to this thread, are instead
assigned to the next waiting thread(s), as if
they had been made available by a call to release().
If the specified waiting time elapses then the value false
is returned.
If the time is
less than or equal to zero, the method will not wait at all.
Any permits that were to be assigned to this thread, are instead
assigned to the next waiting thread(s), as if
they had been made available by a call to release().
permits - the number of permits to acquiretimeout - the maximum time to wait for the permitsunit - the time unit of the timeout argument.
java.lang.InterruptedException - if the current thread is interrupted
java.lang.IllegalArgumentException - if permits less than zero.Thread.interrupt()public void release(long permits)
Releases the given number of permits, increasing the number of available permits by that amount. If any threads are blocking trying to acquire permits, then the one that has been waiting the longest is selected and given the permits that were just released. If the number of available permits satisfies that thread's request then that thread is re-enabled for thread scheduling purposes; otherwise the thread continues to wait. If there are still permits available after the first thread's request has been satisfied, then those permits are assigned to the next waiting thread. If it is satisfied then it is re-enabled for thread scheduling purposes. This continues until there are insufficient permits to satisfy the next waiting thread, or there are no more waiting threads.
There is no requirement that a thread that releases a permit must
have acquired that permit by calling acquire.
Correct usage of a semaphore is established by programming convention
in the application.
permits - the number of permits to release
java.lang.IllegalArgumentException - if permits less than zero.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||