Interface ProgressListener<P>

Type Parameters:
P - The type of progress being made.
All Superinterfaces:
EventListener, GuiseEventListener

public interface ProgressListener<P> extends GuiseEventListener
An object that listens for progress events.
Author:
Garret Wilson
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    progressed(ProgressEvent<P> progressEvent)
    Called when a task makes progress.
  • Method Details

    • progressed

      void progressed(ProgressEvent<P> progressEvent)
      Called when a task makes progress.
      Parameters:
      progressEvent - The event indicating the source of the action.