接口 DataBufferFactory

所有已知实现类:
DefaultDataBufferFactory, Netty5DataBufferFactory, NettyDataBufferFactory

public interface DataBufferFactory
A factory for DataBuffers, allowing for allocation and wrapping of data buffers.
从以下版本开始:
4.0
作者:
Arjen Poutsma
另请参阅:
  • 方法概要

    修饰符和类型
    方法
    说明
    Allocate a data buffer of a default initial capacity.
    allocateBuffer(int initialCapacity)
    Allocate a data buffer of the given initial capacity.
    boolean
    Indicates whether this factory allocates direct buffers (i.e. non-heap, native memory).
    join(List<? extends DataBuffer> dataBuffers)
    Return a new DataBuffer composed of the dataBuffers elements joined together.
    wrap(byte[] bytes)
    Wrap the given byte array in a DataBuffer.
    wrap(ByteBuffer byteBuffer)
    Wrap the given ByteBuffer in a DataBuffer.
  • 方法详细资料

    • allocateBuffer

      DataBuffer allocateBuffer()
      Allocate a data buffer of a default initial capacity. Depending on the underlying implementation and its configuration, this will be heap-based or direct buffer.
      返回:
      the allocated buffer
    • allocateBuffer

      DataBuffer allocateBuffer(int initialCapacity)
      Allocate a data buffer of the given initial capacity. Depending on the underlying implementation and its configuration, this will be heap-based or direct buffer.
      参数:
      initialCapacity - the initial capacity of the buffer to allocate
      返回:
      the allocated buffer
    • wrap

      DataBuffer wrap(ByteBuffer byteBuffer)
      Wrap the given ByteBuffer in a DataBuffer. Unlike allocating, wrapping does not use new memory.
      参数:
      byteBuffer - the NIO byte buffer to wrap
      返回:
      the wrapped buffer
    • wrap

      DataBuffer wrap(byte[] bytes)
      Wrap the given byte array in a DataBuffer. Unlike allocating, wrapping does not use new memory.
      参数:
      bytes - the byte array to wrap
      返回:
      the wrapped buffer
    • join

      DataBuffer join(List<? extends DataBuffer> dataBuffers)
      Return a new DataBuffer composed of the dataBuffers elements joined together. Depending on the implementation, the returned buffer may be a single buffer containing all data of the provided buffers, or it may be a true composite that contains references to the buffers.

      Note that the given data buffers do not have to be released, as they are released as part of the returned composite.

      参数:
      dataBuffers - the data buffers to be composed
      返回:
      a buffer that is composed of the dataBuffers argument
    • isDirect

      boolean isDirect()
      Indicates whether this factory allocates direct buffers (i.e. non-heap, native memory).
      返回:
      true if this factory allocates direct buffers; false otherwise