001package ca.bc.webarts.tools;
002
003interface ZipWatcher
004{
005  /**
006   * Notified when a watched zip file is done.
007   *
008   * @param String the filename of the completed zipfile
009   * @param  boolean flags if ALL the zips are now done and we can stop watching
010   **/
011  void nextZipDone(String filename, boolean completed);
012}