Package | Description |
---|---|
net.openhft.chronicle.bytes |
Modifier and Type | Class and Description |
---|---|
class |
MappedBytesStore
BytesStore to wrap memory mapped data.
|
class |
PointerBytesStore
A BytesStore which can point to arbitrary memory.
|
class |
ReadOnlyMappedBytesStore
BytesStore to wrap memory mapped data.
|
Modifier and Type | Field and Description |
---|---|
protected @NotNull NativeBytesStore<Underlying> |
UncheckedNativeBytes.bytesStore |
Modifier and Type | Method and Description |
---|---|
static @NotNull NativeBytesStore<ByteBuffer> |
NativeBytesStore.elasticByteBuffer() |
static @NotNull NativeBytesStore<ByteBuffer> |
NativeBytesStore.elasticByteBuffer(int size,
long maxSize) |
static @NotNull NativeBytesStore |
NativeBytesStore.from(@NotNull byte[] bytes) |
static @NotNull NativeBytesStore |
NativeBytesStore.from(@NotNull String text) |
static @NotNull NativeBytesStore<Void> |
NativeBytesStore.lazyNativeBytesStoreWithFixedCapacity(long capacity) |
static @NotNull NativeBytesStore<Void> |
NativeBytesStore.nativeStore(long capacity)
this is an elastic native store
|
static @NotNull NativeBytesStore<Void> |
NativeBytesStore.nativeStoreWithFixedCapacity(long capacity) |
static <T> @NotNull NativeBytesStore<T> |
NativeBytesStore.uninitialized() |
static @NotNull NativeBytesStore<ByteBuffer> |
NativeBytesStore.wrap(@NotNull ByteBuffer bb) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.write(long offsetInRDO,
byte[] bytes,
int offset,
int length) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.write(long offsetInRDO,
byte[] bytes,
int offset,
int length) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.write(long writeOffset,
@NotNull RandomDataInput bytes,
long readOffset,
long length) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.write(long writeOffset,
@NotNull RandomDataInput bytes,
long readOffset,
long length) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeByte(long offset,
byte i8) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeByte(long offset,
byte i8) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeDouble(long offset,
double d) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeDouble(long offset,
double d) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeFloat(long offset,
float f) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeFloat(long offset,
float f) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeInt(long offset,
int i32) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeInt(long offset,
int i32) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeLong(long offset,
long i64) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeLong(long offset,
long i64) |
@NotNull NativeBytesStore<Void> |
MappedBytesStore.writeOrderedInt(long offset,
int i) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeOrderedInt(long offset,
int i) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeOrderedInt(long offset,
int i) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeOrderedLong(long offset,
long i) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeOrderedLong(long offset,
long i) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeShort(long offset,
short i16) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeShort(long offset,
short i16) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeVolatileByte(long offset,
byte i8) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeVolatileByte(long offset,
byte i8) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeVolatileInt(long offset,
int i32) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeVolatileInt(long offset,
int i32) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeVolatileLong(long offset,
long i64) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeVolatileLong(long offset,
long i64) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.writeVolatileShort(long offset,
short i16) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.writeVolatileShort(long offset,
short i16) |
@NotNull NativeBytesStore<Underlying> |
NativeBytesStore.zeroOut(long start,
long end) |
@NotNull NativeBytesStore<Void> |
ReadOnlyMappedBytesStore.zeroOut(long start,
long end) |
Modifier and Type | Method and Description |
---|---|
static @NotNull BytesRingBuffer |
BytesRingBuffer.newInstance(@NotNull NativeBytesStore<Void> bytesStore) |
static @NotNull MultiReaderBytesRingBuffer |
BytesRingBuffer.newInstance(@NotNull NativeBytesStore<Void> bytesStore,
int numReaders) |
Copyright © 2020. All rights reserved.