React\HttpClient\ChunkedStreamDecoder::getChunkLength PHP Method

getChunkLength() protected method

protected getChunkLength ( )
    protected function getChunkLength()
    {
        $bufferLength = strlen($this->buffer);
        if ($bufferLength >= $this->remainingLength) {
            return $this->remainingLength;
        }
        return $bufferLength;
    }