com.github.junrar.UnrarCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junrar Show documentation
Show all versions of junrar Show documentation
rar decompression library in plain java
package com.github.junrar;
/**
*
* @author alban
*/
public interface UnrarCallback {
/**
* Return true if the next volume is ready to be processed,
* false otherwise.
*/
boolean isNextVolumeReady(Volume nextVolume);
/**
* This method is invoked each time the progress of the current
* volume changes.
*/
void volumeProgressChanged(long current, long total);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy