net.sf.sevenzipjbinding
Interface IArchiveOpenCallback


public interface IArchiveOpenCallback

Interface to recieve information about open archive progress

Version:
4.65-1
Author:
Boris Brodski

Method Summary
 void setCompleted(java.lang.Long files, java.lang.Long bytes)
          Set amount of competed work.
 void setTotal(java.lang.Long files, java.lang.Long bytes)
          Set total amount of work to be done.
 

Method Detail

setTotal

void setTotal(java.lang.Long files,
              java.lang.Long bytes)
              throws SevenZipException
Set total amount of work to be done. Both parameter are optional.

Parameters:
files - count of files to be processed (optional)
bytes - count of bytes to be processed (optional)
Throws:
SevenZipException - in error case. If this method ends with an exception, the current operation will be reported to 7-Zip as failed. There are no guarantee, that there are no further call back methods will be called. The first thrown exception will be saved and thrown late on from the first called 7-Zip-JBinding main method, such as ISevenZipInArchive.extract() or SevenZip.openInArchive().

setCompleted

void setCompleted(java.lang.Long files,
                  java.lang.Long bytes)
                  throws SevenZipException
Set amount of competed work. Both parameter are optional.

Parameters:
files - count of processed files (optional)
bytes - count of processed bytes (optional)
Throws:
SevenZipException - in error case. If this method ends with an exception, the current operation will be reported to 7-Zip as failed. There are no guarantee, that there are no further call back methods will be called. The first thrown exception will be saved and thrown late on from the first called 7-Zip-JBinding main method, such as ISevenZipInArchive.extract() or SevenZip.openInArchive().