%PDF- %PDF-
Direktori : /data/www_bck/varak.net_bck/ampache.varak.net/modules/Ratchet/WebSocket/Version/ |
Current File : //data/www_bck/varak.net_bck/ampache.varak.net/modules/Ratchet/WebSocket/Version/FrameInterface.php |
<?php namespace Ratchet\WebSocket\Version; interface FrameInterface extends DataInterface { /** * Add incoming data to the frame from peer * @param string */ function addBuffer($buf); /** * Is this the final frame in a fragmented message? * @return bool */ function isFinal(); /** * Is the payload masked? * @return bool */ function isMasked(); /** * @return int */ function getOpcode(); /** * @return int */ //function getReceivedPayloadLength(); /** * 32-big string * @return string */ function getMaskingKey(); }