T
- The content type.public static interface MemoryManager.MemoryHandle<T>
MemoryManager
.Modifier and Type | Method and Description |
---|---|
void |
free()
Manually release this memory area.
|
T |
get()
Gets the content of this memory area.
|
long |
getSize()
Get the size that was requested for this memory area.
|
T get()
This method should be the prefered access to the memory since it will do error checking when free()
was called.
long getSize()
void free()