com.github.luben.zstd.EndDirective Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jena-fmod-kafka Show documentation
Show all versions of jena-fmod-kafka Show documentation
Apache Jena Fuseki server Kafka connector
package com.github.luben.zstd;
/** Enum that expresses desired flushing for a streaming compression call.
*
* @see ZstdCompressCtx#compressDirectByteBufferStream
*/
public enum EndDirective {
CONTINUE(0),
FLUSH(1),
END(2);
private final int value;
private EndDirective(int value) {
this.value = value;
}
int value() {
return value;
}
}