Package org.redisson

Class RedissonPermitExpirableSemaphore

    • Method Detail

      • getChannelName

        public static String getChannelName​(String name)
      • acquire

        public String acquire​(long leaseTime,
                              TimeUnit timeUnit)
                       throws InterruptedException
        Description copied from interface: RPermitExpirableSemaphore
        Acquires a permit with defined lease time from this semaphore, blocking until one is available, or the thread is interrupted.

        Acquires a permit, if one is available and returns its id, 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:

        Specified by:
        acquire in interface RPermitExpirableSemaphore
        Parameters:
        leaseTime - - permit lease time
        timeUnit - - time unit
        Returns:
        permit id
        Throws:
        InterruptedException - if the current thread is interrupted
      • acquireAsync

        public RFuture<String> acquireAsync​(long leaseTime,
                                            TimeUnit timeUnit)
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Acquires a permit with defined lease time from this semaphore, blocking until one is available, or the thread is interrupted.

        Acquires a permit, if one is available and returns its id, 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:

        Specified by:
        acquireAsync in interface RPermitExpirableSemaphoreAsync
        Parameters:
        leaseTime - - permit lease time
        timeUnit - - time unit
        Returns:
        permit id
      • acquireAsync

        public RFuture<String> acquireAsync()
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Acquires a permit from this semaphore, blocking until one is available, or the thread is interrupted.

        Acquires a permit, if one is available and returns its id, 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:

        Specified by:
        acquireAsync in interface RPermitExpirableSemaphoreAsync
        Returns:
        permit id
      • tryAcquire

        public String tryAcquire()
        Description copied from interface: RPermitExpirableSemaphore
        Acquires a permit only if one is available at the time of invocation.

        Acquires a permit, if one is available and returns immediately, with the permit id, reducing the number of available permits by one.

        If no permit is available then this method will return immediately with the value null.

        Specified by:
        tryAcquire in interface RPermitExpirableSemaphore
        Returns:
        permit id if a permit was acquired and null otherwise
      • tryAcquireAsync

        public RFuture<String> tryAcquireAsync()
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Acquires a permit only if one is available at the time of invocation.

        Acquires a permit, if one is available and returns immediately, with the permit id, reducing the number of available permits by one.

        If no permit is available then this method will return immediately with the value null.

        Specified by:
        tryAcquireAsync in interface RPermitExpirableSemaphoreAsync
        Returns:
        permit id if a permit was acquired and null otherwise
      • generateId

        protected String generateId()
      • tryAcquireAsync

        public RFuture<String> tryAcquireAsync​(int permits,
                                               long timeoutDate)
      • tryAcquireAsync

        public RFuture<String> tryAcquireAsync​(long waitTime,
                                               TimeUnit unit)
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Acquires a permit from this semaphore, if one becomes available within the given waiting time and the current thread has not been interrupted.

        Acquires a permit, if one is available and returns immediately, with the permit id, 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:

        If a permit is acquired then the permit id is returned.

        If the specified waiting time elapses then the value null is returned. If the time is less than or equal to zero, the method will not wait at all.

        Specified by:
        tryAcquireAsync in interface RPermitExpirableSemaphoreAsync
        Parameters:
        waitTime - the maximum time to wait for a permit
        unit - the time unit of the timeout argument
        Returns:
        permit id if a permit was acquired and null if the waiting time elapsed before a permit was acquired
      • tryAcquire

        public String tryAcquire​(long waitTime,
                                 long ttl,
                                 TimeUnit unit)
                          throws InterruptedException
        Description copied from interface: RPermitExpirableSemaphore
        Acquires a permit with defined lease time from this semaphore, if one becomes available within the given waiting time and the current thread has not been interrupted.

        Acquires a permit, if one is available and returns immediately, with the permit id, 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:

        If a permit is acquired then the permit id is returned.

        If the specified waiting time elapses then the value null is returned. If the time is less than or equal to zero, the method will not wait at all.

        Specified by:
        tryAcquire in interface RPermitExpirableSemaphore
        Parameters:
        waitTime - the maximum time to wait for a permit
        ttl - permit lease time, use -1 to make it permanent
        unit - the time unit of the timeout argument
        Returns:
        permit id if a permit was acquired and null if the waiting time elapsed before a permit was acquired
        Throws:
        InterruptedException - if the current thread is interrupted
      • tryAcquireAsync

        public RFuture<String> tryAcquireAsync​(long waitTime,
                                               long ttl,
                                               TimeUnit unit)
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Acquires a permit with defined lease time from this semaphore, if one becomes available within the given waiting time and the current thread has not been interrupted.

        Acquires a permit, if one is available and returns immediately, with the permit id, 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:

        If a permit is acquired then the permit id is returned.

        If the specified waiting time elapses then the value null is returned. If the time is less than or equal to zero, the method will not wait at all.

        Specified by:
        tryAcquireAsync in interface RPermitExpirableSemaphoreAsync
        Parameters:
        waitTime - the maximum time to wait for a permit
        ttl - permit lease time, use -1 to make it permanent
        unit - the time unit of the timeout argument
        Returns:
        permit id if a permit was acquired and null if the waiting time elapsed before a permit was acquired
      • tryAcquire

        public String tryAcquire​(long waitTime,
                                 TimeUnit unit)
                          throws InterruptedException
        Description copied from interface: RPermitExpirableSemaphore
        Acquires a permit from this semaphore, if one becomes available within the given waiting time and the current thread has not been interrupted.

        Acquires a permit, if one is available and returns immediately, with the permit id, 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:

        If a permit is acquired then the permit id is returned.

        If the specified waiting time elapses then the value null is returned. If the time is less than or equal to zero, the method will not wait at all.

        Specified by:
        tryAcquire in interface RPermitExpirableSemaphore
        Parameters:
        waitTime - the maximum time to wait for a permit
        unit - the time unit of the timeout argument
        Returns:
        permit id if a permit was acquired and null if the waiting time elapsed before a permit was acquired
        Throws:
        InterruptedException - if the current thread is interrupted
      • release

        public void release​(String permitId)
        Description copied from interface: RPermitExpirableSemaphore
        Releases a permit by its id, returning it to the semaphore.

        Releases a permit, increasing the number of available permits by one. If any threads of Redisson client are trying to acquire a permit, then one is selected and given the permit that was just released.

        There is no requirement that a thread that releases a permit must have acquired that permit by calling RPermitExpirableSemaphore.acquire(). Correct usage of a semaphore is established by programming convention in the application.

        Throws an exception if permit id doesn't exist or has already been release

        Specified by:
        release in interface RPermitExpirableSemaphore
        Parameters:
        permitId - - permit id
      • tryRelease

        public boolean tryRelease​(String permitId)
        Description copied from interface: RPermitExpirableSemaphore
        Releases a permit by its id, returning it to the semaphore.

        Releases a permit, increasing the number of available permits by one. If any threads of Redisson client are trying to acquire a permit, then one is selected and given the permit that was just released.

        There is no requirement that a thread that releases a permit must have acquired that permit by calling RPermitExpirableSemaphore.acquire(). Correct usage of a semaphore is established by programming convention in the application.

        Specified by:
        tryRelease in interface RPermitExpirableSemaphore
        Parameters:
        permitId - - permit id
        Returns:
        true if a permit has been released and false otherwise
      • tryReleaseAsync

        public RFuture<Boolean> tryReleaseAsync​(String permitId)
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Releases a permit by its id, returning it to the semaphore.

        Releases a permit, increasing the number of available permits by one. If any threads of Redisson client are trying to acquire a permit, then one is selected and given the permit that was just released.

        There is no requirement that a thread that releases a permit must have acquired that permit by calling RPermitExpirableSemaphoreAsync.acquireAsync(). Correct usage of a semaphore is established by programming convention in the application.

        Specified by:
        tryReleaseAsync in interface RPermitExpirableSemaphoreAsync
        Parameters:
        permitId - - permit id
        Returns:
        true if a permit has been released and false otherwise
      • expireAsync

        public RFuture<Boolean> expireAsync​(long timeToLive,
                                            TimeUnit timeUnit)
        Description copied from interface: RExpirableAsync
        Set a timeout for object in async mode. After the timeout has expired, the key will automatically be deleted.
        Specified by:
        expireAsync in interface RExpirableAsync
        Parameters:
        timeToLive - - timeout before object will be deleted
        timeUnit - - timeout time unit
        Returns:
        true if the timeout was set and false if not
      • expireAtAsync

        public RFuture<Boolean> expireAtAsync​(long timestamp)
        Description copied from interface: RExpirableAsync
        Set an expire date for object in async mode. When expire date comes the key will automatically be deleted.
        Specified by:
        expireAtAsync in interface RExpirableAsync
        Parameters:
        timestamp - - expire date in milliseconds (Unix timestamp)
        Returns:
        true if the timeout was set and false if not
      • clearExpireAsync

        public RFuture<Boolean> clearExpireAsync()
        Description copied from interface: RExpirableAsync
        Clear an expire timeout or expire date for object in async mode. Object will not be deleted.
        Specified by:
        clearExpireAsync in interface RExpirableAsync
        Returns:
        true if the timeout was cleared and false if not
      • releaseAsync

        public RFuture<Void> releaseAsync​(String permitId)
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Releases a permit by its id, returning it to the semaphore.

        Releases a permit, increasing the number of available permits by one. If any threads of Redisson client are trying to acquire a permit, then one is selected and given the permit that was just released.

        There is no requirement that a thread that releases a permit must have acquired that permit by calling RPermitExpirableSemaphoreAsync.acquireAsync(). Correct usage of a semaphore is established by programming convention in the application.

        Throws an exception if permit id doesn't exist or has already been release

        Specified by:
        releaseAsync in interface RPermitExpirableSemaphoreAsync
        Parameters:
        permitId - - permit id
        Returns:
        void
      • trySetPermits

        public boolean trySetPermits​(int permits)
        Description copied from interface: RPermitExpirableSemaphore
        Sets number of permits.
        Specified by:
        trySetPermits in interface RPermitExpirableSemaphore
        Parameters:
        permits - - number of permits
        Returns:
        true if permits has been set successfully, otherwise false.
      • addPermits

        public void addPermits​(int permits)
        Description copied from interface: RPermitExpirableSemaphore
        Increases or decreases the number of available permits by defined value.
        Specified by:
        addPermits in interface RPermitExpirableSemaphore
        Parameters:
        permits - - number of permits to add/remove
      • updateLeaseTimeAsync

        public RFuture<Boolean> updateLeaseTimeAsync​(String permitId,
                                                     long leaseTime,
                                                     TimeUnit unit)
        Description copied from interface: RPermitExpirableSemaphoreAsync
        Overrides and updates lease time for defined permit id.
        Specified by:
        updateLeaseTimeAsync in interface RPermitExpirableSemaphoreAsync
        Parameters:
        permitId - - permit id
        leaseTime - - permit lease time, use -1 to make it permanent
        unit - - the time unit of the timeout argument
        Returns:
        true if permits has been updated successfully, otherwise false.
      • updateLeaseTime

        public boolean updateLeaseTime​(String permitId,
                                       long leaseTime,
                                       TimeUnit unit)
        Description copied from interface: RPermitExpirableSemaphore
        Overrides and updates lease time for defined permit id.
        Specified by:
        updateLeaseTime in interface RPermitExpirableSemaphore
        Parameters:
        permitId - - permit id
        leaseTime - - permit lease time, use -1 to make it permanent
        unit - - the time unit of the timeout argument
        Returns:
        true if permits has been updated successfully, otherwise false.
      • expire

        public boolean expire​(long timeToLive,
                              TimeUnit timeUnit)
        Description copied from interface: RExpirable
        Set a timeout for object. After the timeout has expired, the key will automatically be deleted.
        Specified by:
        expire in interface RExpirable
        Parameters:
        timeToLive - - timeout before object will be deleted
        timeUnit - - timeout time unit
        Returns:
        true if the timeout was set and false if not
      • expireAt

        public boolean expireAt​(long timestamp)
        Description copied from interface: RExpirable
        Set an expire date for object. When expire date comes the key will automatically be deleted.
        Specified by:
        expireAt in interface RExpirable
        Parameters:
        timestamp - - expire date in milliseconds (Unix timestamp)
        Returns:
        true if the timeout was set and false if not
      • expireAt

        public boolean expireAt​(Date timestamp)
        Description copied from interface: RExpirable
        Set an expire date for object. When expire date comes the key will automatically be deleted.
        Specified by:
        expireAt in interface RExpirable
        Parameters:
        timestamp - - expire date
        Returns:
        true if the timeout was set and false if not
      • expireAtAsync

        public RFuture<Boolean> expireAtAsync​(Date timestamp)
        Description copied from interface: RExpirableAsync
        Set an expire date for object in async mode. When expire date comes the key will automatically be deleted.
        Specified by:
        expireAtAsync in interface RExpirableAsync
        Parameters:
        timestamp - - expire date
        Returns:
        true if the timeout was set and false if not
      • clearExpire

        public boolean clearExpire()
        Description copied from interface: RExpirable
        Clear an expire timeout or expire date for object.
        Specified by:
        clearExpire in interface RExpirable
        Returns:
        true if timeout was removed false if object does not exist or does not have an associated timeout
      • remainTimeToLive

        public long remainTimeToLive()
        Description copied from interface: RExpirable
        Remaining time to live of Redisson object that has a timeout
        Specified by:
        remainTimeToLive in interface RExpirable
        Returns:
        time in milliseconds -2 if the key does not exist. -1 if the key exists but has no associated expire.
      • remainTimeToLiveAsync

        public RFuture<Long> remainTimeToLiveAsync()
        Description copied from interface: RExpirableAsync
        Remaining time to live of Redisson object that has a timeout
        Specified by:
        remainTimeToLiveAsync in interface RExpirableAsync
        Returns:
        time in milliseconds -2 if the key does not exist. -1 if the key exists but has no associated expire.