Package | Description |
---|---|
net.openhft.chronicle.bytes |
Modifier and Type | Interface and Description |
---|---|
interface |
RandomDataOutput<R extends RandomDataOutput<R>> |
Modifier and Type | Interface and Description |
---|---|
interface |
Bytes<Underlying>
Bytes is a pointer to a region of memory within a BytesStore.
|
interface |
BytesStore<B extends BytesStore<B,Underlying>,Underlying>
A immutable reference to some bytes with fixed extents.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractBytes<Underlying> |
class |
ExpectedBytesStore<B extends BytesStore<B,Underlying>,Underlying> |
class |
HeapBytesStore<Underlying>
Wrapper for Heap ByteBuffers and arrays.
|
class |
MappedBytes
Bytes to wrap memory mapped data.
|
class |
MappedBytesStore
BytesStore to wrap memory mapped data.
|
class |
NativeBytes<Underlying>
Elastic native memory accessor which can wrap either a direct ByteBuffer or malloc'ed memory.
|
class |
NativeBytesStore<Underlying> |
class |
NoBytesStore |
class |
PointerBytesStore
A BytesStore which can point to arbitary memory.
|
class |
UncheckedBytes<Underlying>
Fast unchecked version of AbstractBytes
|
class |
UncheckedNativeBytes<Underlying>
Fast unchecked version of AbstractBytes
|
class |
VanillaBytes<Underlying>
Simple Bytes implementation which is not Elastic.
|
Modifier and Type | Method and Description |
---|---|
RandomDataOutput |
NoBytesStore.write(long offsetInRDO,
byte[] bytes,
int offset,
int length) |
RandomDataOutput |
NoBytesStore.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
RandomDataOutput |
NoBytesStore.writeByte(long offset,
byte i8) |
RandomDataOutput |
NoBytesStore.writeDouble(long offset,
double d) |
RandomDataOutput |
NoBytesStore.writeFloat(long offset,
float d) |
RandomDataOutput |
NoBytesStore.writeInt(long offset,
int i) |
RandomDataOutput |
NoBytesStore.writeLong(long offset,
long i) |
RandomDataOutput |
NoBytesStore.writeOrderedInt(long offset,
int i) |
RandomDataOutput |
NoBytesStore.writeOrderedLong(long offset,
long i) |
RandomDataOutput |
NoBytesStore.writeShort(long offset,
short i) |
RandomDataOutput |
NoBytesStore.writeVolatileByte(long offset,
byte i8) |
RandomDataOutput |
NoBytesStore.writeVolatileInt(long offset,
int i32) |
RandomDataOutput |
NoBytesStore.writeVolatileLong(long offset,
long i64) |
RandomDataOutput |
NoBytesStore.writeVolatileShort(long offset,
short i16) |
Copyright © 2015. All rights reserved.