Class BufferFactory.ByteBufferFactory

    • Constructor Detail

      • ByteBufferFactory

        public ByteBufferFactory​(boolean allocateDirect)
        Constructs a new ByteBufferFactory with the specified buffer allocation policy.
        Parameters:
        allocateDirect - true to allocate and return ByteBufferWrappers backed by direct buffers, false to allocate and return ByteufferWrappers backed by non-direct buffers.
      • ByteBufferFactory

        public ByteBufferFactory()
        Constructs a new ByteBufferFactory with the default buffer allocation policy. This factory allocates and returns ByteBufferWrappers backed by direct buffers.
    • Method Detail

      • newBuffer

        public BufferWrapper newBuffer​(int size)
        Constructs a new ByteBufferWrapper of the specified size, backed by a ByteBuffer.
        Specified by:
        newBuffer in class BufferFactory
        Parameters:
        size - the new buffer's size, int bytes.
        Returns:
        the new buffer.
        Throws:
        java.lang.IllegalArgumentException - if size is negative.