See: Description
Interface | Description |
---|---|
ProgressMonitor |
ProgressMonitor defines a set of methods that are useful for
keeping track of the progress of an operation. |
Class | Description |
---|---|
AbstractProgressMonitor |
This is a progress monitor to use when we don't care about the progress,
this doesn't provide a view of the progress to the client.
|
AlertNullProgressMonitor |
Like the NullProgressMonitor, but print to stderr when the task is
taking a non-trivial amount of time.
|
ConsoleTextProgressMonitor |
Example monitor that prints progress messages to the console (stderr).
|
NullProgressMonitor |
This is a progress monitor to use when we don't care about the progress.
|
SubTaskMonitor |
creates a ProgressMonitor that maps its progress to a parent's progress.
|
Exception | Description |
---|---|
CancelledOperationException |
FileSystem cancel exception.
|
UncheckedCancelledOperationException |
Experiment with unchecked vs checked exceptions.
|
ProgressMonitors are used to provide feedback to the human operator for long processes.