| Package | Description |
|---|---|
| net.openhft.lang.io |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Bytes |
interface |
IByteBufferBytes
Created by peter.lawrey on 27/01/15.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractBytes |
class |
BoundsCheckingDirectBytes
Unlike
NativeBytes, always throw check bounds and exceptions on all write methods,
including that write a single primitive, e. |
class |
BoundsCheckingNativeBytes
Unlike
NativeBytes, always throw check bounds and exceptions on
all write methods, including that write a single primitive, e. |
class |
ByteBufferBytes |
class |
CheckedBytes |
class |
DirectByteBufferBytes |
class |
DirectBytes |
class |
MappedNativeBytes
works in conjunction with a MappedFile to map additional memory blocks when required This
implementation is very similar to
NativeBytes, accept that the memory address resolution
is left to ChronicleUnsafe, rather than being part of this class. |
class |
MultiStoreBytes |
class |
NativeBytes |
class |
VanillaMappedBytes |
class |
WrappedBytes<B extends Bytes>
A super class for those which wrap bytes.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
CheckedBytes.compare(long offset,
RandomDataInput input,
long inputOffset,
long len) |
boolean |
RandomDataInput.compare(long offset,
RandomDataInput input,
long inputOffset,
long len) |
boolean |
WrappedBytes.compare(long offset,
RandomDataInput input,
long inputOffset,
long len) |
boolean |
MappedNativeBytes.compare(long offset,
RandomDataInput input,
long inputOffset,
long len) |
boolean |
AbstractBytes.compare(long offset,
RandomDataInput input,
long inputOffset,
long len) |
boolean |
NativeBytes.compare(long offset,
RandomDataInput input,
long inputOffset,
long len) |
boolean |
CheckedBytes.startsWith(RandomDataInput input) |
boolean |
RandomDataInput.startsWith(RandomDataInput input) |
boolean |
WrappedBytes.startsWith(RandomDataInput keyBytes) |
boolean |
AbstractBytes.startsWith(RandomDataInput input) |
void |
CheckedBytes.write(RandomDataInput bytes) |
void |
WrappedBytes.write(RandomDataInput in) |
void |
RandomDataOutput.write(RandomDataInput bytes)
Copies the contents of a RandomDataInput from the position to the limit.
|
void |
AbstractBytes.write(RandomDataInput bytes) |
void |
CheckedBytes.write(RandomDataInput bytes,
long position,
long length) |
void |
WrappedBytes.write(RandomDataInput in,
long position,
long length) |
void |
RandomDataOutput.write(RandomDataInput bytes,
long position,
long length)
Copy from one Bytes to another, moves the position of "this" RandomDataOutput by the length.
|
void |
MappedNativeBytes.write(RandomDataInput bytes,
long position,
long length) |
void |
AbstractBytes.write(RandomDataInput bytes,
long position,
long length) |
void |
NativeBytes.write(RandomDataInput bytes,
long position,
long length) |
Copyright © 2019. All rights reserved.