mxmbsocket/lib/Ratchet/SocketObserver.php
Chris Boden 7514ce8e85 Cleaning Up
Cleaned up a lot of the code
Added API documentation
Fixed some unit tests
Much cleaning left to be done
2011-10-27 19:17:38 -04:00

20 lines
354 B
PHP

<?php
namespace Ratchet;
interface SocketObserver {
/**
* @param SocketInterface
*/
function onOpen(SocketInterface $conn);
/**
* @param SocketInterface
* @param string
*/
function onRecv(SocketInterface $from, $msg);
/**
* @param SocketInterface
*/
function onClose(SocketInterface $conn);
}