<?php namespace Ratchet\RFC6455\Messaging; 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(); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
CloseFrameChecker.php | File | 643 B | 0644 |
|
DataInterface.php | File | 672 B | 0644 |
|
Frame.php | File | 13.49 KB | 0644 |
|
FrameInterface.php | File | 650 B | 0644 |
|
Message.php | File | 2.6 KB | 0644 |
|
MessageBuffer.php | File | 6.85 KB | 0644 |
|
MessageInterface.php | File | 383 B | 0644 |
|