Class LzipLoadOptions


  • public class LzipLoadOptions
    extends Object

    Options for loading LzipArchive.

    In the .NET Framework 4.0 and above, can be used to cancel extraction.

    • Constructor Detail

      • LzipLoadOptions

        public LzipLoadOptions()
    • Method Detail

      • setCancellationFlag

        public void setCancellationFlag​(CancellationFlag value)

        Sets a cancellation flag used to cancel the extraction operation.

        Cancel lzip archive extraction after a certain time.

        
             try (CancellationFlag cf = new CancellationFlag()) {
                 cf.cancelAfter(TimeUnit.SECONDS.toMillis(60));
                 LzipLoadOptions options = new LzipLoadOptions();
                 options.setCancellationFlag(cf);
                 try (LzipArchive a = new LzipArchive("big.lz", 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:
        value - a cancellation flag used to cancel the extraction operation.