PHPDaemon\PubSub\PubSub::unsub PHP Method

unsub() public method

Unsubscribe object from event
public unsub ( string $id, object $obj ) : boolean
$id string Event ID
$obj object Subscriber
return boolean Success
    public function unsub($id, $obj)
    {
        if (!isset($this->events[$id])) {
            return false;
        }
        return $this->events[$id]->unsub($obj);
    }