Package com.aspose.zip
Class IsoLoadOptions
- java.lang.Object
-
- com.aspose.zip.IsoLoadOptions
-
public class IsoLoadOptions extends Object
Options with which
IsoArchiveis loaded from a compressed file. Contains event raised on extraction.
-
-
Constructor Summary
Constructors Constructor Description IsoLoadOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Event<ProgressEventArgs>getEntryExtractionProgressed()Gets an event that is raised when some bytes have been extracted.voidsetCancellationFlag(CancellationFlag value)Sets a cancellation flag used to cancel the extraction operation.voidsetEntryExtractionProgressed(Event<ProgressEventArgs> value)Sets an event that is raised when some bytes have been extracted.
-
-
-
Method Detail
-
getEntryExtractionProgressed
public final Event<ProgressEventArgs> getEntryExtractionProgressed()
Gets an event that is raised when some bytes have been extracted.
long length = 10_000_000; IsoLoadOptions loadOptions = new IsoLoadOptions(); loadOptions.setEntryExtractionProgressed((sender, args) -> { int percent = (int)((100 * args.getProceededBytes()) / length); }); IsoArchive archive = new IsoArchive("archive.iso", loadOptions);Event sender is the
IsoEntryinstance which extraction is progressed.- Returns:
- an event that is raised when some bytes have been extracted
-
setEntryExtractionProgressed
public final void setEntryExtractionProgressed(Event<ProgressEventArgs> value)
Sets an event that is raised when some bytes have been extracted.
long length = 10_000_000; IsoLoadOptions loadOptions = new IsoLoadOptions(); loadOptions.setEntryExtractionProgressed((sender, args) -> { int percent = (int)((100 * args.getProceededBytes()) / length); }); IsoArchive archive = new IsoArchive("archive.iso", loadOptions);Event sender is the
IsoEntryinstance which extraction is progressed.- Parameters:
value- an event that is raised when some bytes have been extracted
-
setCancellationFlag
public void setCancellationFlag(CancellationFlag value)
Sets a cancellation flag used to cancel the extraction operation.
Cancel ISO archive extraction after a certain time.
Cancellation mostly results in some data not being extracted.try (CancellationFlag cf = new CancellationFlag()) { cf.cancelAfter(TimeUnit.SECONDS.toMillis(60)); IsoLoadOptions options = new IsoLoadOptions(); options.setCancellationFlag(cf); try (IsoArchive a = new IsoArchive("big.iso", options)) { try { a.getEntries().get(0).extract("data.bin"); } catch (OperationCanceledException e) { System.out.println("Extraction was cancelled after 60 seconds"); } } }- Parameters:
value- a cancellation flag used to cancel the extraction operation.
-
-