Jamm\Memory\RedisServer::Subscribe PHP Method

Subscribe() public method

public Subscribe ( $channel )
    public function Subscribe($channel)
    {
        if (!is_array($channel)) {
            $channel = func_get_args();
        }
        return $this->__call('Subscribe', $channel);
    }