Interface ActionProgress

All Superinterfaces:
Serializable
All Known Subinterfaces:
DeleteProgress, ExportProgress, FeatureProgress, ImportProgress, ReleaseProgress, RestoreProgress, RevertProgress, ServerBackupProgress

public interface ActionProgress extends Serializable
Progress of an server action (e.g. project export
Since:
4.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the current log since the last progress poll.
    int
    Returns current action progress value between 0 and 100 or -1.
    Returns the actual progress status
    boolean
    Indicates wether the underlying serveraction is finished or not.
  • Method Details

    • getProgress

      int getProgress()
      Returns current action progress value between 0 and 100 or -1. A value of -1 means indeterminate progress.
      Since:
      4.0
    • getStatus

      String getStatus()
      Returns the actual progress status
      Since:
      4.0
    • getLog

      String getLog()
      Returns the current log since the last progress poll.
      Since:
      4.0
      See Also:
    • isFinished

      boolean isFinished()
      Indicates wether the underlying serveraction is finished or not.
      Returns:
      true if the belonging server action is finished, false otherwise
      Since:
      4.0