void pq\Connection::notify(string $channel, string $message)

Notify all listeners on $channel with $message.

Params:

Throws:

Example:


<?php

$conn 
= new pq\Connection;
$conn->notify("queue""Hello World!");

?>