Package com.bitwig.extension.api
Interface MemoryBlock
public interface MemoryBlock
Defines a block of memory. The memory can be read/written using a
ByteBuffer provided by
createByteBuffer().- Since:
- API version 7
-
Method Summary
Modifier and TypeMethodDescriptionCreates aByteBufferthat can be used to read/write the data at this memory block.intsize()The size in bytes of this memory block.
-
Method Details
-
size
int size()The size in bytes of this memory block. -
createByteBuffer
ByteBuffer createByteBuffer()Creates aByteBufferthat can be used to read/write the data at this memory block.
-