Package | Description |
---|---|
net.openhft.chronicle.bytes | |
net.openhft.chronicle.bytes.internal |
This package and any and all sub-packages contains strictly internal classes for this Chronicle library.
|
Modifier and Type | Method and Description |
---|---|
abstract MappedFile |
MappedBytes.mappedFile() |
static @NotNull MappedFile |
MappedFile.mappedFile(@NotNull File file,
long chunkSize) |
static @NotNull MappedFile |
MappedFile.mappedFile(@NotNull File file,
long chunkSize,
long overlapSize) |
static @NotNull MappedFile |
MappedFile.mappedFile(@NotNull File file,
long chunkSize,
long overlapSize,
boolean readOnly) |
static @NotNull MappedFile |
MappedFile.mappedFile(@NotNull File file,
long capacity,
long chunkSize,
long overlapSize,
boolean readOnly) |
static @NotNull MappedFile |
MappedFile.mappedFile(@NotNull String filename,
long chunkSize) |
static @NotNull MappedFile |
MappedFile.mappedFile(@NotNull String filename,
long chunkSize,
long overlapSize) |
static @NotNull MappedFile |
MappedFile.of(@NotNull File file,
long chunkSize,
long overlapSize,
boolean readOnly) |
static @NotNull MappedFile |
MappedFile.ofSingle(@NotNull File file,
long capacity,
boolean readOnly) |
static @NotNull MappedFile |
MappedFile.readOnly(@NotNull File file) |
Modifier and Type | Method and Description |
---|---|
@NotNull MappedBytesStore |
MappedBytesStoreFactory.create(net.openhft.chronicle.core.io.ReferenceOwner owner,
MappedFile mappedFile,
long start,
long address,
long capacity,
long safeCapacity) |
static @NotNull MappedBytes |
MappedBytes.mappedBytes(@NotNull MappedFile rw) |
Constructor and Description |
---|
MappedBytesStore(net.openhft.chronicle.core.io.ReferenceOwner owner,
MappedFile mappedFile,
long start,
long address,
long capacity,
long safeCapacity) |
Modifier and Type | Class and Description |
---|---|
class |
ChunkedMappedFile
A memory mapped files which can be randomly accessed in chunks.
|
class |
SingleMappedFile
A memory mapped files which can be randomly accessed in chunks.
|
Modifier and Type | Field and Description |
---|---|
protected MappedFile |
CommonMappedBytes.mappedFile |
Modifier and Type | Method and Description |
---|---|
@NotNull MappedFile |
CommonMappedBytes.mappedFile() |
Constructor and Description |
---|
ChunkedMappedBytes(@NotNull MappedFile mappedFile) |
ChunkedMappedBytes(@NotNull MappedFile mappedFile,
String name) |
CommonMappedBytes(@NotNull MappedFile mappedFile) |
CommonMappedBytes(@NotNull MappedFile mappedFile,
String name) |
SingleMappedBytes(@NotNull MappedFile mappedFile) |
SingleMappedBytes(@NotNull MappedFile mappedFile,
String name) |
Copyright © 2022. All rights reserved.