Icicle\Concurrent\Threading\Internal\Semaphore::release PHP Méthode

release() protected méthode

Releases a lock from the semaphore.
protected release ( )
    protected function release()
    {
        $this->synchronized(function () {
            ++$this->locks;
        });
    }