public class ClientSemaphoreProxy extends ClientProxy implements ISemaphore
ISemaphore.name| Constructor and Description |
|---|
ClientSemaphoreProxy(String serviceName,
String objectId,
ClientContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
acquire()
Acquires a permit if one is available, and returns immediately,
reducing the number of available permits by one.
|
void |
acquire(int permits)
Acquires the given number of permits if they are available,
and returns immediately, reducing the number of available permits
by the given amount.
|
int |
availablePermits()
Returns the current number of permits currently available in this semaphore.
|
int |
drainPermits()
Acquires and returns all permits that are immediately available.
|
void |
increasePermits(int increase)
Increases the number of available permits by the indicated
amount.
|
boolean |
init(int permits)
Try to initialize this ISemaphore instance with the given permit count
|
protected ClientMessage |
invokeOnPartition(ClientMessage req) |
protected <T> T |
invokeOnPartition(ClientMessage clientMessage,
long invocationTimeoutSeconds) |
protected <T> ClientDelegatingFuture<T> |
invokeOnPartitionAsync(ClientMessage clientMessage,
ClientMessageDecoder clientMessageDecoder) |
protected <T> T |
invokeOnPartitionInterruptibly(ClientMessage clientMessage) |
protected <T> T |
invokeOnPartitionInterruptibly(ClientMessage clientMessage,
long invocationTimeoutSeconds) |
protected void |
onInitialize()
Called when proxy is created.
|
void |
reducePermits(int reduction)
Shrinks the number of available permits by the indicated reduction.
|
void |
release()
Releases a permit, increasing the number of available permits by
one.
|
void |
release(int permits)
Releases the given number of permits, increasing the number of available
permits by that amount.
|
String |
toString() |
boolean |
tryAcquire()
Acquires a permit, if one is available and returns immediately, with the
value
true, reducing the number of available permits by one. |
boolean |
tryAcquire(int 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. |
boolean |
tryAcquire(int permits,
long timeout,
TimeUnit unit)
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. |
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.
|
deregisterListener, destroy, destroyLocally, destroyRemotely, equals, getClient, getConnectedServerVersion, getContext, getDistributedObjectName, getId, getName, getPartitionKey, getSerializationService, getServiceName, hashCode, invoke, invoke, invokeOnAddress, invokeOnPartition, invokeOnPartitionInterruptibly, onDestroy, onShutdown, postDestroy, preDestroy, registerListener, setContext, toData, toObjectclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetNamedestroy, getPartitionKey, getServiceNamepublic ClientSemaphoreProxy(String serviceName, String objectId, ClientContext context)
public boolean init(int permits)
ISemaphoreinit in interface ISemaphorepermits - the given permit countpublic void acquire()
throws InterruptedException
ISemaphoreIf no permit is available, then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happens:
ISemaphore.release() methods for this
semaphore and the current thread is next to be assigned a permit,If the current thread:
InterruptedException is thrown and the current thread's
interrupted status is cleared.acquire in interface ISemaphoreInterruptedException - if the current thread is interruptedpublic void acquire(int permits)
throws InterruptedException
ISemaphoreIf 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,InterruptedException is thrown and the current thread's
interrupted status is cleared.acquire in interface ISemaphorepermits - the number of permits to acquireInterruptedException - if the current thread is interruptedpublic int availablePermits()
ISemaphoreThis method is typically used for debugging and testing purposes.
availablePermits in interface ISemaphorepublic int drainPermits()
ISemaphoredrainPermits in interface ISemaphorepublic void reducePermits(int reduction)
ISemaphore
This method differs from acquire in that it does not block
waiting for permits to become available.
reducePermits in interface ISemaphorereduction - the number of permits to removepublic void increasePermits(int increase)
ISemaphorerelease in that it does not
effect the amount of permits this caller has attached.increasePermits in interface ISemaphoreincrease - the number of permits to addpublic void release()
ISemaphore
There is no requirement that a thread that releases a permit must
have acquired that permit by calling one of the acquire
methods. Correct usage of a semaphore is established by programming
convention in the application.
release in interface ISemaphorepublic void release(int permits)
ISemaphore
There is no requirement that a thread that releases a permit must have
acquired that permit by calling one of the acquire methods.
Correct usage of a semaphore is established by programming convention
in the application.
release in interface ISemaphorepermits - the number of permits to releasepublic boolean tryAcquire()
ISemaphoretrue, 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 interface ISemaphoretrue if a permit was acquired and false
otherwisepublic boolean tryAcquire(int permits)
ISemaphoretrue,
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.
tryAcquire in interface ISemaphorepermits - the number of permits to acquiretrue if the permits were acquired and
false otherwisepublic boolean tryAcquire(long timeout,
TimeUnit unit)
throws InterruptedException
ISemaphore
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:
ISemaphore.release() method for this
semaphore and the current thread is next to be assigned a permit, or
If a permit is acquired then the value true is returned.
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.
If the current thread:
InterruptedException is thrown and the current thread's
interrupted status is cleared.tryAcquire in interface ISemaphoretimeout - the maximum time to wait for a permitunit - the time unit of the timeout argumenttrue if a permit was acquired and false
if the waiting time elapsed before a permit was acquiredInterruptedException - if the current thread is interruptedpublic boolean tryAcquire(int permits,
long timeout,
TimeUnit unit)
throws InterruptedException
ISemaphoretrue,
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, ortrue is returned.
If the specified waiting time elapses then false
is returned. If the time is less than or equal to zero, the method
will not wait at all.
If the current thread:
InterruptedException is thrown and the current thread's
interrupted status is cleared.tryAcquire in interface ISemaphorepermits - the number of permits to acquiretimeout - the maximum time to wait for the permitsunit - the time unit of the timeout argumenttrue if all permits were acquired,
false if the waiting time elapsed before all permits could be acquiredInterruptedException - if the current thread is interruptedprotected void onInitialize()
ClientProxyonInitialize in class ClientProxyprotected ClientMessage invokeOnPartition(ClientMessage req)
protected <T> T invokeOnPartitionInterruptibly(ClientMessage clientMessage) throws InterruptedException
InterruptedExceptionprotected <T> ClientDelegatingFuture<T> invokeOnPartitionAsync(ClientMessage clientMessage, ClientMessageDecoder clientMessageDecoder)
protected <T> T invokeOnPartition(ClientMessage clientMessage, long invocationTimeoutSeconds)
protected <T> T invokeOnPartitionInterruptibly(ClientMessage clientMessage, long invocationTimeoutSeconds) throws InterruptedException
InterruptedExceptionCopyright © 2019 Hazelcast, Inc.. All Rights Reserved.