Package | Description |
---|---|
net.openhft.chronicle.bytes |
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 |
AbstractBytesStore<B extends BytesStore<B,Underlying>,Underlying>
Created by peter on 07/05/16.
|
class |
CheckingMappedBytes
Created by peter on 08/03/16.
|
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 arbitrary 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 |
---|---|
static boolean |
BytesUtil.bytesEqual(CharSequence cs,
RandomDataInput bs,
long offset,
int length) |
static boolean |
BytesUtil.bytesEqual(RandomDataInput a,
long offset,
RandomDataInput second,
long secondOffset,
long len) |
Bytes<Underlying> |
UncheckedNativeBytes.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
B |
ExpectedBytesStore.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
Bytes<Underlying> |
AbstractBytes.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
RandomDataOutput |
NoBytesStore.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
NativeBytesStore<Underlying> |
NativeBytesStore.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
HeapBytesStore<Underlying> |
HeapBytesStore.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
R |
RandomDataOutput.write(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
void |
NativeBytesStore.write0(long offsetInRDO,
RandomDataInput bytes,
long offset,
long length) |
Copyright © 2016. All rights reserved.