thumbnailator
thumbnailator copied to clipboard
Add progress notification via callbacks (a la Event Listeners)
Problem
-------
* Currently, Thumbnailator does not have facilities to provide feedback as to
the progress of a thumbnail generation task.
This means that if a task takes a long time, there is no way for the
application using Thumbnailator to give feedback as to the progress of making
thumbnails.
Also, not providing adequate feedback means that applications using the library
may not be able to perform adequate logging, which may result in difficulty
during development and debugging.
Solution
--------
* Provide an event notification facility, similar to the `EventListener`s which
can be found in the Java APIs.
Complications
-------------
* Many classes would have to be retrofitted to support the event notification
mechanism.
Original issue reported on code.google.com by [email protected] on 3 Apr 2011 at 11:32
Original comment by [email protected] on 26 Feb 2012 at 6:23
- Added labels: Priority-Low
- Removed labels: Priority-Medium
Original comment by [email protected] on 22 Dec 2013 at 7:15
- Changed title: Add progress notification via callbacks (a la Event Listeners)