:27 PM
An: 'HttpClient User Discussion'
Betreff: Response buffer size
Hello,
�
I’m using HttpClient 4.5.7. reading responses from a backend through a
‘HttpAsyncResponseConsumer’ on the ‘consumeContent’ method in this way:
�
while ( (numBytesRead = decoder.read(this.
On Fri, 2021-01-08 at 16:57 +0100, Joan grupoventus wrote:
> Hello,
>
> �
>
> I’m using HttpClient 4.5.7. reading responses from a backend through
> a ‘HttpAsyncResponseConsumer’ on the ‘consumeContent’ method in this
> way:
>
> �
>
> while ( (numBytesRead = decoder.read(this.bbuf)) > 0 ) {
Hi,
Sorry, I’m using http async client 4.1.4.
Thanks,
Joan.
From: Joan grupoventus
Sent: Friday, January 8, 2021 4:57 PM
To: 'Joan ventusproxy'
Subject: Response buffer size
Hello,
I’m using HttpClient 4.5.7. reading responses from a backend through a
‘HttpAsyncResponseConsum
Hello,
�
I’m using HttpClient 4.5.7. reading responses from a backend through a
‘HttpAsyncResponseConsumer’ on the ‘consumeContent’ method in this way:
�
while ( (numBytesRead = decoder.read(this.bbuf)) > 0 ) {
( . . . )
}
where this.bbuf = ByteBuffer.allocate(32768);
The b