onChunkHeader() will be called when the chunk header is received. As
the chunk data arrives, it will be passed to the callback normally with
onBody() calls. Note that the chunk data may arrive in multiple
onBody() calls: it is not guaranteed to arrive in a single onBody()
call.
After the chunk data has been received and the terminating CRLF has been
received, onChunkComplete() will be called.
@param stream The stream ID
@param length The chunk length.
Called for each HTTP chunk header.
onChunkHeader() will be called when the chunk header is received. As the chunk data arrives, it will be passed to the callback normally with onBody() calls. Note that the chunk data may arrive in multiple onBody() calls: it is not guaranteed to arrive in a single onBody() call.
After the chunk data has been received and the terminating CRLF has been received, onChunkComplete() will be called.
@param stream The stream ID @param length The chunk length.