Package org.reldb.toolbox.progress
Interface ProgressIndicatorDisplay
- All Known Implementing Classes:
ConsoleProgressIndicatorDisplay
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Used to create lambda expressions that emit the current progress of a ProgressIndicator, typically
when the ProgressIndicator's move(...) method is invoked.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
display(StandardProgressIndicator progressIndicator)
Invoked in response to a ProgressIndicator move(...) invocation.
-
Method Details
-
display
Invoked in response to a ProgressIndicator move(...) invocation.- Parameters:
progressIndicator
- The ProgressIndicatorCore whose status we wish to display.
-