Interface InstallationProxyClient.StatusCallback

Enclosing class:
InstallationProxyClient

public static interface InstallationProxyClient.StatusCallback
Callback which receives status information on an ongoing operation.
  • Method Summary

    Modifier and Type Method Description
    void error​(java.lang.String message)
    Called if the operation fails.
    void progress​(java.lang.String status, int percentComplete)
    Reports the progress of the operation.
    void success()
    Called once the operation has been completed successfully.
  • Method Details

    • progress

      void progress​(java.lang.String status, int percentComplete)
      Reports the progress of the operation.
      Parameters:
      status - the current status.
      percentComplete - the progress in percent.
    • success

      void success()
      Called once the operation has been completed successfully.
    • error

      void error​(java.lang.String message)
      Called if the operation fails.
      Parameters:
      message - the error message.