bandwidthThrottle\tokenBucket\storage\IPCStorage::getMicrotime PHP Метод

getMicrotime() публичный Метод

public getMicrotime ( )
    public function getMicrotime()
    {
        $data = shm_get_var($this->memory, 0);
        if ($data === false) {
            throw new StorageException("Could not read from shared memory.");
        }
        return DoublePacker::unpack($data);
    }