Interface IAnylineUpdateDelegate

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract void onUpdateProgress(String fileName, float progress) Gives current progress for the running update
      abstract void onUpdateError(String error) Gives the error message in case the update fails
      abstract void onUpdateFinished() Gives the callback that the update has finished
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • onUpdateProgress

         abstract void onUpdateProgress(String fileName, float progress)

        Gives current progress for the running update

        Parameters:
        fileName - Name of the file that gets updated
        progress - Float, percentage of how much is downloaded already
      • onUpdateError

         abstract void onUpdateError(String error)

        Gives the error message in case the update fails

        Parameters:
        error - Error message
      • onUpdateFinished

         abstract void onUpdateFinished()

        Gives the callback that the update has finished