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

Asynchronously start notifying all listeners on $channel with $message.

Params:

Throws:

Example:


<?php

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

?>