ZSTD_EndDirective class abstract
===== Streaming compression functions =====
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
- ZSTD_e_continue → const int
- collect more data, encoder decides when to output compressed result, for optimal compression ratio
- ZSTD_e_end → const int
- flush any remaining data and close current frame. note that frame is only closed after compressed data is fully flushed (return value == 0). After that point, any additional data starts a new frame. note : each frame is independent (does not reference any content from previous frame). : note : multithreaded compression will block to flush as much output as possible.
- ZSTD_e_flush → const int
- flush any data provided so far, it creates (at least) one new block, that can be decoded immediately on reception; frame will continue: any future data can still reference previously compressed data, improving compression. note : multithreaded compression will block to flush as much output as possible.