public interface AbsoluteProgressReporter extends ProgressReporter
ProgressReporter
interface. Instead of sending the percentage of progress it is possible
to send an absolute value. This is useful for example when copying files
were it makes more sense to display the number of bytes copied. It is
up to each implementation to define the endpoint, ie. the total number of
bytes to copy. Implementations should still allow the ProgressReporter.display(int, String)
method to be called.Modifier and Type | Method and Description |
---|---|
void |
displayAbsolute(long completed,
java.lang.String message)
Display a progress message.
|
append, display