ManaPHP\Message\Queue\Adapter\Redis::delete PHP Method

delete() public method

public delete ( string $topic ) : void
$topic string
return void
    public function delete($topic)
    {
        foreach ($this->_priorities as $priority) {
            $this->redis->delete($this->_prefix . $topic . ':' . $priority);
        }
    }