mxmbsocket/lib/Ratchet/Protocol/WebSocket/AppInterface.php
Chris Boden 51d0516aa3 Cleanup
Application stack working!
Existing unit tests fixed
Implemented HyBi-10 unframing
2011-10-28 14:12:39 -04:00

14 lines
376 B
PHP

<?php
namespace Ratchet\Protocol\Websocket;
use Ratchet\ReceiverInterface;
/**
* @todo App interfaces this (optionally) if is meant for WebSocket
* @todo WebSocket checks if instanceof AppInterface, if so uses getSubProtocol() when doing handshake
*/
interface AppInterface extends ReceiverInterface {
/**
* @return string
*/
function getSubProtocol();
}