httpClient.post().uri(getSearchUrl())
.send(Mono.just(Unpooled.wrappedBuffer(bytes)))
.responseSingle((resp, buf) -> {
return buf;
})
.map(ByteBuf::retain)
.map(byteBuf -> {
response.setResponseBodyStream(new ByteBufInputStream(byteBuf, true));
return response;
});
В методе responseSingle
респон уже распакован. Итак, как я могу получить длину сжатого ответа? Спасибо.