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.

@FunctionalInterface public interface ProgressIndicatorDisplay
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 Type
    Method
    Description
    void
    display​(StandardProgressIndicator progressIndicator)
    Invoked in response to a ProgressIndicator move(...) invocation.
  • Method Details

    • display

      void display(StandardProgressIndicator progressIndicator)
      Invoked in response to a ProgressIndicator move(...) invocation.
      Parameters:
      progressIndicator - The ProgressIndicatorCore whose status we wish to display.