| Package | Description |
|---|---|
| net.kuujo.catalyst.buffer |
Provides a low-level
Buffer abstraction backed by on- or off-heap memory, memory mapped
files, or RandomAccessFile. |
| Modifier and Type | Method and Description |
|---|---|
static FileBuffer |
FileBuffer.allocate(File file)
Allocates a file buffer of unlimited capacity.
|
static FileBuffer |
FileBuffer.allocate(File file,
long initialCapacity)
Allocates a file buffer with the given initial capacity.
|
static FileBuffer |
FileBuffer.allocate(File file,
long initialCapacity,
long maxCapacity)
Allocates a file buffer.
|
static FileBuffer |
FileBuffer.allocate(File file,
String mode,
long initialCapacity,
long maxCapacity)
Allocates a file buffer.
|
Copyright © 2013–2015. All rights reserved.