<?php namespace Ratchet\RFC6455\Messaging; interface DataInterface { /** * Determine if the message is complete or still fragmented * @return bool */ function isCoalesced(); /** * Get the number of bytes the payload is set to be * @return int */ function getPayloadLength(); /** * Get the payload (message) sent from peer * @return string */ function getPayload(); /** * Get raw contents of the message * @return string */ function getContents(); /** * Should return the unmasked payload received from peer * @return string */ function __toString(); }
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 |
|