public interface IIOWriteProgressListener extends EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
imageComplete(ImageWriter source)
Reports that an image write operation has completed.
|
void |
imageProgress(ImageWriter source,
float percentageDone)
Reports the approximate percentage of completion of an image write
operation.
|
void |
imageStarted(ImageWriter source,
int imageIndex)
Reports that a thumbnail write operation has started.
|
void |
thumbnailComplete(ImageWriter source)
Reports that a thumbnail write operation has completed.
|
void |
thumbnailProgress(ImageWriter source,
float percentageDone)
Reports the approximate percentage of completion of a thumbnail write
operation.
|
void |
thumbnailStarted(ImageWriter source,
int imageIndex,
int thumnailIndex)
Reports that a thumbnail write operation is beginning.
|
void |
writeAborted(ImageWriter source)
Reports that an image write operation is aborted.
|
void imageComplete(ImageWriter source)
source - the ImageWriter object calling this methodvoid imageProgress(ImageWriter source, float percentageDone)
source - the ImageWriter object calling this methodpercentageDone - the approximate percentage of decoding completedvoid imageStarted(ImageWriter source, int imageIndex)
source - the ImageWriter object calling this methodimageIndex - the index of the image being writtenvoid thumbnailComplete(ImageWriter source)
source - the ImageWriter object calling this methodvoid thumbnailProgress(ImageWriter source, float percentageDone)
source - the ImageWriter object calling this methodpercentageDone - the approximate percentage of decoding completedvoid thumbnailStarted(ImageWriter source, int imageIndex, int thumnailIndex)
source - the ImageWriter object calling this methodimageIndex - the index of the image being writtenthumnailIndex - the index of the thumbnail being writtenvoid writeAborted(ImageWriter source)
source - the ImageWriter object calling this method