net.sf.sevenzipjbinding
Interface IProgress

All Known Subinterfaces:
IArchiveExtractCallback

public interface IProgress

This interface provides progress information of a process.

Version:
4.65-1
Author:
Boris Brodski

Method Summary
 void setCompleted(long completeValue)
          Set current amount of completed work
 void setTotal(long total)
          Set total amount of work
 

Method Detail

setTotal

void setTotal(long total)
              throws SevenZipException
Set total amount of work

Parameters:
total - amount of work
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(long completeValue)
                  throws SevenZipException
Set current amount of completed work

Parameters:
completeValue - amount of completed work
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().