Interface ByteBody
- All Known Subinterfaces:
AvailableByteBody
,CloseableAvailableByteBody
,CloseableByteBody
,InternalByteBody
- All Known Implementing Classes:
AvailableNettyByteBody
,NettyByteBody
,StreamingNettyByteBody
Each ByteBody
may only be used once for a "primary" operation (such as
toInputStream()
). However, before that primary operation, it may be
split
multiple times. Splitting returns a new ByteBody
that is
independent. That means if you want to do two primary operations on the same
ByteBody
, you can instead split it once and then do one of the primary operations
on the body returned by split()
.
To ensure resource cleanup, split()
returns a CloseableByteBody
. This
body must be closed if no terminal operation is performed, otherwise there may be a memory leak
or stalled connection!
An individual ByteBody
is not thread-safe: You may not call
split()
concurrently from multiple threads for example. However, the new
ByteBody
returned from split()
is independent, so you may use it on a
different thread as this one.
- Since:
- 4.5.0
- Author:
- Jonas Konrad
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
Exception that is sent to subscribers when the body is discarded as a result ofallowDiscard()
calls.static enum
This enum controls how backpressure should be handled if one of the two bodies ("downstreams") is consuming data slower than the other. -
Method Summary
Modifier and TypeMethodDescriptionSignal that the upstream may discard any remaining body data.CompletableFuture<? extends CloseableAvailableByteBody>
buffer()
Buffer the full body and return anCompletableFuture
that will complete when all bytes are available, or an error occurs.Get the expected length of this body, if known (either fromContent-Length
or from previous buffering).default @NonNull CloseableByteBody
split()
Equivalent tosplit(SplitBackpressureMode.SLOWEST)
.split
(@NonNull ByteBody.SplitBackpressureMode backpressureMode) Create a new, independentByteBody
that contains the same data as this one.Get this body as a reactive stream of byte arrays.Get this body as a reactive stream ofByteBuffer
s.Get this body as anInputStream
.
-
Method Details
-
split
Equivalent tosplit(SplitBackpressureMode.SLOWEST)
.- Returns:
- The newly split body. Must be closed by the caller, unless a terminal operation is performed on it
-
split
@NonNull @NonNull CloseableByteBody split(@NonNull @NonNull ByteBody.SplitBackpressureMode backpressureMode) Create a new, independentByteBody
that contains the same data as this one.- Parameters:
backpressureMode
- How to handle backpressure between the old and new body. SeeByteBody.SplitBackpressureMode
documentation- Returns:
- The newly split body. Must be closed by the caller, unless a terminal operation is performed on it
-
allowDiscard
Signal that the upstream may discard any remaining body data. Only if all consumers of the body allow discarding will the body be discarded, otherwise it will still be sent to all consumers. It is an optional operation.Discarding may be implemented e.g. by closing the input side of an HTTP/2 stream.
This method must be called before any primary operation.
- Returns:
- This body
-
expectedLength
Get the expected length of this body, if known (either fromContent-Length
or from previous buffering). The actual length will never exceed this value, though it may sometimes be lower if there is a connection error.This value may go from
OptionalLong.empty()
to a known value over the lifetime of this body.This is not a primary operation and does not modify this
ByteBody
.- Returns:
- The expected length of this body
-
toInputStream
Get this body as anInputStream
.This is a primary operation. After this operation, no other primary operation or
split()
may be done.- Returns:
- The streamed bytes
-
toByteArrayPublisher
Get this body as a reactive stream of byte arrays.This is a primary operation. After this operation, no other primary operation or
split()
may be done.- Returns:
- The streamed bytes
-
toByteBufferPublisher
Get this body as a reactive stream ofByteBuffer
s. Note that the buffers may bereference counted
, and the caller must take care of releasing them.This is a primary operation. After this operation, no other primary operation or
split()
may be done.- Returns:
- The streamed bytes
-
buffer
CompletableFuture<? extends CloseableAvailableByteBody> buffer()Buffer the full body and return anCompletableFuture
that will complete when all bytes are available, or an error occurs.This is a primary operation. After this operation, no other primary operation or
split()
may be done.- Returns:
- A future that completes when all bytes are available
-