Package com.twelvemonkeys.image
Interface BufferedImageFactory.ProgressListener
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- BufferedImageFactory
public static interface BufferedImageFactory.ProgressListener extends java.util.EventListener
This interface allows clients of aBufferedImageFactory
to receive notifications of decoding progress.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
progress(BufferedImageFactory factory, float percentage)
Reports progress to this listener.
-
-
-
Method Detail
-
progress
void progress(BufferedImageFactory factory, float percentage)
Reports progress to this listener. Invoked by theBufferedImageFactory
to report progress in the image decoding.- Parameters:
factory
- the factory reporting the progresspercentage
- the percentage of progress
-
-