1.29.0 (2022-06-03)
Features Added
- Added support for
BinaryData
inHttpRequest
:- Added
HttpRequest(HttpMethod, URL, HttpHeaders)
andHttpRequest(HttpMethod, URL, HttpHeaders, BinaryData)
constructors. - Added
HttpRequest.getBodyAsBinaryData()
. - Added
HttpRequest.setBody(BinaryData)
. - Added
BinaryData.fromFlux(Flux<ByteBuffer>, Long, boolean)
that allows both buffered and non-buffered handling ofFlux<ByteBuffer>
.
- Added
- Added
BinaryData.fromFile(Path file, Long position, Long length)
andBinaryData.fromFile(Path file, Long position, Long length, int chunkSize)
that represents slice of the file.