malkusch\lock\util\Loop::__construct PHP Method

__construct() public method

The default is 3 seconds.
public __construct ( integer $timeout = 3 )
$timeout integer The timeout in seconds.
    public function __construct($timeout = 3)
    {
        if ($timeout <= 0) {
            throw new \LengthException("The timeout must be greater than 0. '{$timeout}' was given");
        }
        $this->timeout = $timeout;
    }