Package io.micronaut.http.body.stream
Class AvailableByteArrayBody
java.lang.Object
io.micronaut.http.body.stream.AvailableByteArrayBody
- All Implemented Interfaces:
AvailableByteBody
,ByteBody
,CloseableAvailableByteBody
,CloseableByteBody
,InternalByteBody
,Closeable
,AutoCloseable
public final class AvailableByteArrayBody
extends Object
implements CloseableAvailableByteBody, InternalByteBody
AvailableByteBody
implementation based on a simple byte array.- Since:
- 4.6.0
- Author:
- Jonas Konrad
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.micronaut.http.body.ByteBody
ByteBody.BodyDiscardedException, ByteBody.SplitBackpressureMode
-
Method Summary
Modifier and TypeMethodDescription@NonNull ExecutionFlow<? extends CloseableAvailableByteBody>
Variant ofInternalByteBody.buffer()
that uses theExecutionFlow
API for extra efficiency.void
close()
Clean up any resources held by this instance.static @NonNull AvailableByteArrayBody
create
(@NonNull ByteBufferFactory<?, ?> bufferFactory, byte @NonNull [] array) long
length()
The length in bytes of the body.split()
For immediate buffers, backpressure is not relevant, so the backpressure modes passed toAvailableByteBody.split(SplitBackpressureMode)
are ignored.byte @NonNull []
Get this body as a byte array.Get this body as aByteBuffer
.Get this body as anInputStream
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.http.body.AvailableByteBody
expectedLength, split, toByteArrayPublisher, toByteBufferPublisher, toString
Methods inherited from interface io.micronaut.http.body.CloseableAvailableByteBody
allowDiscard
Methods inherited from interface io.micronaut.http.body.InternalByteBody
buffer
-
Method Details
-
create
@NonNull public static @NonNull AvailableByteArrayBody create(@NonNull @NonNull ByteBufferFactory<?, ?> bufferFactory, byte @NonNull [] array) -
split
Description copied from interface:AvailableByteBody
For immediate buffers, backpressure is not relevant, so the backpressure modes passed toAvailableByteBody.split(SplitBackpressureMode)
are ignored. You can use this method always.- Specified by:
split
in interfaceAvailableByteBody
- Specified by:
split
in interfaceByteBody
- Returns:
- A body with the same content as this one
- See Also:
-
toInputStream
Description copied from interface:ByteBody
Get this body as anInputStream
.This is a primary operation. After this operation, no other primary operation or
ByteBody.split()
may be done.- Specified by:
toInputStream
in interfaceByteBody
- Returns:
- The streamed bytes
-
length
public long length()Description copied from interface:AvailableByteBody
The length in bytes of the body.- Specified by:
length
in interfaceAvailableByteBody
- Returns:
- The length
- See Also:
-
toByteArray
Description copied from interface:AvailableByteBody
Get this body as a byte array.This is a primary operation. After this operation, no other primary operation or
AvailableByteBody.split()
may be done.- Specified by:
toByteArray
in interfaceAvailableByteBody
- Returns:
- The bytes
-
toByteBuffer
Description copied from interface:AvailableByteBody
Get this body as aByteBuffer
. Note that the buffer may bereference counted
, and the caller must take care of releasing it.This is a primary operation. After this operation, no other primary operation or
AvailableByteBody.split()
may be done.- Specified by:
toByteBuffer
in interfaceAvailableByteBody
- Returns:
- The bytes
-
close
public void close()Description copied from interface:CloseableByteBody
Clean up any resources held by this instance. See class documentation.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceCloseableByteBody
-
bufferFlow
Description copied from interface:InternalByteBody
Variant ofInternalByteBody.buffer()
that uses theExecutionFlow
API for extra efficiency.- Specified by:
bufferFlow
in interfaceInternalByteBody
- Returns:
- A flow that completes when all bytes are available
-