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 | Class and Description |
---|---|
class |
MappedBytesStore
BytesStore to wrap memory mapped data.
|
class |
PointerBytesStore
A BytesStore which can point to arbitrary memory.
|
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<U> |
NativeBytesStore.write(long offsetInRDO,
byte[] byteArray,
int offset,
int length) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.write(long writeOffset,
@NotNull RandomDataInput bytes,
long readOffset,
long length) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeByte(long offset,
byte i8) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeDouble(long offset,
double d) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeFloat(long offset,
float f) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeInt(long offset,
int i32) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeLong(long offset,
long i64) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeOrderedInt(long offset,
int i) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeOrderedLong(long offset,
long i) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeShort(long offset,
short i16) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeVolatileByte(long offset,
byte i8) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeVolatileInt(long offset,
int i32) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeVolatileLong(long offset,
long i64) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.writeVolatileShort(long offset,
short i16) |
@NotNull NativeBytesStore<U> |
NativeBytesStore.zeroOut(long start,
long end) |
Modifier and Type | Method and Description |
---|---|
static int |
BytesInternal.parse8bit_SB1(long offset,
@NotNull NativeBytesStore nbs,
@NotNull StringBuilder sb,
int length) |
static void |
BytesInternal.parseUtf8_SB1(@NotNull NativeBytesStore bytes,
long offset,
@NotNull StringBuilder sb,
int utflen) |
Copyright © 2022. All rights reserved.