public interface Compression
| Modifier and Type | Method and Description |
|---|---|
default boolean |
available() |
default byte[] |
compress(byte[] bytes) |
default void |
compress(BytesIn from,
BytesOut to) |
static <T> void |
compress(CharSequence cs,
Bytes uncompressed,
Bytes compressed) |
OutputStream |
compressingStream(OutputStream output) |
InputStream |
decompressingStream(InputStream input) |
default byte[] |
uncompress(byte[] bytes) |
default void |
uncompress(BytesIn from,
BytesOut to) |
static void |
uncompress(CharSequence cs,
BytesIn from,
BytesOut to) |
static <T> byte[] |
uncompress(CharSequence cs,
T t,
net.openhft.chronicle.core.util.ThrowingFunction<T,byte[],net.openhft.chronicle.core.io.IORuntimeException> bytes) |
static <T> void compress(@NotNull
CharSequence cs,
@NotNull
Bytes uncompressed,
@NotNull
Bytes compressed)
static void uncompress(@NotNull
CharSequence cs,
@NotNull
BytesIn from,
@NotNull
BytesOut to)
throws net.openhft.chronicle.core.io.IORuntimeException
net.openhft.chronicle.core.io.IORuntimeException@Nullable
static <T> byte[] uncompress(@NotNull
CharSequence cs,
T t,
@NotNull
net.openhft.chronicle.core.util.ThrowingFunction<T,byte[],net.openhft.chronicle.core.io.IORuntimeException> bytes)
throws net.openhft.chronicle.core.io.IORuntimeException
net.openhft.chronicle.core.io.IORuntimeExceptiondefault byte[] compress(@NotNull
byte[] bytes)
default byte[] uncompress(@NotNull
byte[] bytes)
throws net.openhft.chronicle.core.io.IORuntimeException
net.openhft.chronicle.core.io.IORuntimeExceptiondefault void uncompress(@NotNull
BytesIn from,
@NotNull
BytesOut to)
throws net.openhft.chronicle.core.io.IORuntimeException
net.openhft.chronicle.core.io.IORuntimeExceptionInputStream decompressingStream(InputStream input) throws net.openhft.chronicle.core.io.IORuntimeException
net.openhft.chronicle.core.io.IORuntimeExceptionOutputStream compressingStream(OutputStream output)
default boolean available()
Copyright © 2019. All rights reserved.