Class BufferFactory.IntBufferFactory

    • Constructor Detail

      • IntBufferFactory

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

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

      • newBuffer

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