React\HttpClient\ChunkedStreamDecoder::getChunkLength PHP Метод

getChunkLength() защищенный Метод

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