bandwidthThrottle\tokenBucket\storage\PHPRedisStorage::isBootstrapped PHP Method

isBootstrapped() public method

public isBootstrapped ( )
    public function isBootstrapped()
    {
        try {
            return $this->redis->exists($this->key);
        } catch (RedisException $e) {
            throw new StorageException("Failed to check for key existence", 0, $e);
        }
    }