Lz4LoadOptions
Contents
[
Hide
]Inheritance: java.lang.Object
public class Lz4LoadOptions
Options for loading Lz4Archive.
Constructors
Constructor | Description |
---|---|
Lz4LoadOptions() |
Methods
Method | Description |
---|---|
setCancellationFlag(CancellationFlag value) | Sets a cancellation flag used to cancel the extraction operation. |
Lz4LoadOptions()
public Lz4LoadOptions()
setCancellationFlag(CancellationFlag value)
public void setCancellationFlag(CancellationFlag value)
Sets a cancellation flag used to cancel the extraction operation.
Cancel lz4 archive extraction after a certain time.
try (CancellationFlag cf = new CancellationFlag()) {
cf.cancelAfter(TimeUnit.SECONDS.toMillis(60));
Lz4LoadOptions options = new Lz4LoadOptions();
options.setCancellationFlag(cf);
try (Lz4Archive a = new Lz4Archive("big.lz4", options)) {
try {
a.extract("data.bin");
} catch (OperationCanceledException e) {
System.out.println("Extraction was cancelled after 60 seconds");
}
}
}
Cancellation mostly results in some data not being extracted.
Parameters:
Parameter | Type | Description |
---|---|---|
value | CancellationFlag | a cancellation flag used to cancel the extraction operation. |