public interface IIOReadProgressListener extends EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
imageComplete(ImageReader source)
Reports that the current image read operation has completed.
|
void |
imageProgress(ImageReader source,
float percentageDone)
Reports the approximate percentage of completions of this image read
operation.
|
void |
imageStarted(ImageReader source,
int imageIndex)
Reports that the current image read operation has started.
|
void |
readAborted(ImageReader source)
Reports that a read operation has been aborted.
|
void |
sequenceComplete(ImageReader source)
Reports that a sequence of read operationshas completed.
|
void |
sequenceStarted(ImageReader source,
int minIndex)
Reports that a sequence of read operations is beginning.
|
void |
thumbnailComplete(ImageReader source)
Reports that a thumbnail read operation has completed.
|
void |
thumbnailProgress(ImageReader source,
float percentageDone)
Reports the approximate percentage of completion of a thumbnail read
operation.
|
void |
thumbnailStarted(ImageReader source,
int imageIndex,
int thumbnailIndex)
Reports that a thumbnail read operation is beginning.
|
void imageComplete(ImageReader source)
source - the ImageReader object calling this methodvoid imageProgress(ImageReader source, float percentageDone)
source - the ImageReader object calling this methodpercentageDone - the approximate percentage of encoding completedvoid imageStarted(ImageReader source, int imageIndex)
source - the ImageReader object calling this methodimageIndex - the index of the image to readvoid readAborted(ImageReader source)
source - the ImageReader object calling this methodvoid sequenceComplete(ImageReader source)
source - the ImageReader object calling this methodvoid sequenceStarted(ImageReader source, int minIndex)
source - the ImageReader object calling this methodminIndex - the index of the first image to be readvoid thumbnailComplete(ImageReader source)
source - the ImageReader object calling this methodvoid thumbnailProgress(ImageReader source, float percentageDone)
source - the ImageReader object calling this methodpercentageDone - the approximate percentage of encoding completedvoid thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex)
source - the ImageReader object calling this methodimageIndex - the index of the image being readthumbnailIndex - the index of the thumbnail being read