public final class NettyDataBuffer extends Object implements DataBuffer
ByteBuf
.Constructor and Description |
---|
NettyDataBuffer(io.netty.buffer.ByteBuf bytebuf)
Constructor for creating a NettyDataBuffer, by passing a Netty ByteBuf.
|
Modifier and Type | Method and Description |
---|---|
long |
getLength()
Returns the length of the data.
|
Object |
getNettyOutput()
Returns an object for writing to a netty channel.
|
ByteBuffer |
getReadOnlyByteBuffer()
Returns a
ByteBuffer for read-only access to the data. |
int |
readableBytes() |
void |
readBytes(byte[] dst,
int dstIndex,
int length)
Transfers this buffer's data to the specified destination starting at
the current
readerIndex and increases the readerIndex
by the number of the transferred bytes (= length ). |
void |
readBytes(ByteBuffer outputBuf)
Transfers this buffer's data to the given
ByteBuffer . |
void |
readBytes(OutputStream outputStream,
int length)
Transfers this buffer's data to the given stream.
|
void |
release()
Release the Netty ByteBuf.
|
public NettyDataBuffer(io.netty.buffer.ByteBuf bytebuf)
bytebuf
- The ByteBuf having the datapublic Object getNettyOutput()
DataBuffer
getNettyOutput
in interface DataBuffer
public long getLength()
DataBuffer
getLength
in interface DataBuffer
public ByteBuffer getReadOnlyByteBuffer()
DataBuffer
ByteBuffer
for read-only access to the data.getReadOnlyByteBuffer
in interface DataBuffer
public void readBytes(byte[] dst, int dstIndex, int length)
DataBuffer
readerIndex
and increases the readerIndex
by the number of the transferred bytes (= length
).readBytes
in interface DataBuffer
dst
- the destinationdstIndex
- the first index of the destinationlength
- the number of bytes to transferpublic void readBytes(OutputStream outputStream, int length) throws IOException
DataBuffer
readBytes
in interface DataBuffer
outputStream
- the stream to transfer data tolength
- length of the data to be transferredIOException
public void readBytes(ByteBuffer outputBuf)
DataBuffer
ByteBuffer
.readBytes
in interface DataBuffer
outputBuf
- the buffer to transfer data topublic int readableBytes()
readableBytes
in interface DataBuffer
public void release()
release
in interface DataBuffer
Copyright © 2023. All Rights Reserved.