mxmbsocket/lib/Ratchet/Application/WAMP/Command/Action/Event.php
Chris Boden b2e4578e19 WAMP onCall
Functioning onCall on WAMP
Fixed bug on Event - fluent interface (had broken factory)
2012-01-17 20:39:53 -05:00

17 lines
445 B
PHP

<?php
namespace Ratchet\Application\WAMP\Command\Action;
use Ratchet\Resource\Command\Action\SendMessage;
/**
* This is an event in the context of a topicURI
* This event (message) is to be sent to all subscribers of $uri
*/
class Event extends SendMessage {
/**
* @param ...
* @param string
*/
public function setEvent($uri, $msg) {
return $this->setMessage(json_encode(array(8, $uri, (string)$msg)));
}
}