rabbit.zip
Interface GZipUnpackListener

All Superinterfaces:
GZipListener

public interface GZipUnpackListener
extends GZipListener

A listener for gzip unpack data events.

Author:
Robert Olofsson

Method Summary
 void finished()
          Call when unpacking is really finished.
 void unpacked(byte[] buf, int off, int len)
          Some data has been unpacked.
 
Methods inherited from interface rabbit.zip.GZipListener
failed, getBuffer
 

Method Detail

unpacked

void unpacked(byte[] buf,
              int off,
              int len)
Some data has been unpacked.

Parameters:
buf - the buffer for the unpacked data
off - the starting offset for the unpacked data.
len - the length of the unpacked data.

finished

void finished()
Call when unpacking is really finished.