| Class and Description |
|---|
| Memory
The Memory interface defines get and put methods for all Java primitive and
primitive array types to/from a byte offset that is relative to the base address of some
object or region of native memory defined by the implementing class.
|
| MemoryMappedFile
MemoryMappedFile class extends NativeMemory and is used to memory map files (including those >
2GB) off heap.
|
| MemoryRegion
The MemoryRegion class implements the Memory interface and provides a means of
hierarchically partitioning a large block of native memory into
smaller regions of memory, each with their own capacity and offsets.
|
| MemoryRequest
The MemoryRequest is a callback interface that is accessible from the Memory interface and
provides a means for a Memory object to request more memory from the calling class and to
free Memory that is no longer needed.
|
| NativeMemory
The NativeMemory class implements the Memory interface and is used to access Java primitive
arrays, and ByteBuffers by presenting them as arguments to the constructors of this class.
|
Copyright © 2015–2017 Yahoo! Inc.. All rights reserved.