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); }