Devristo\Phpws\Framing\WebSocketFrame::isReady PHP Method

isReady() public method

public isReady ( )
    public function isReady()
    {
        if ($this->actualLength > $this->payloadLength) {
            throw new WebSocketFrameSizeMismatch($this);
        }
        return $this->actualLength == $this->payloadLength;
    }