You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Oliver Heger (JIRA)" <ji...@apache.org> on 2016/10/08 14:46:20 UTC

[jira] [Created] (LANG-1275) Add a tryAcquire() method to TimedSemaphore

Oliver Heger created LANG-1275:
----------------------------------

             Summary: Add a tryAcquire() method to TimedSemaphore
                 Key: LANG-1275
                 URL: https://issues.apache.org/jira/browse/LANG-1275
             Project: Commons Lang
          Issue Type: Improvement
          Components: lang.concurrent.*
    Affects Versions: 3.4
            Reporter: Oliver Heger


In order to support non-blocking use cases and be more in-line with Java's {{Semaphore}} class, {{TimedSemaphore}} should support a _tryAcquire()_ method:

{code}
public boolean tryAcquire();
{code}

The method checks whether another permit can be acquired. If so, it acquires the permit and returns *true*. Otherwise, it returns *false* without blocking the calling thread.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)