Interface ReloadStatus


public interface ReloadStatus
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the location of configuration file
    int
    Number of classes that failed to reload (e.g.
    Get a message that describes current status (e.g.
    int
    Number of classes that failed to reload (e.g.
    int
    Total number of classes to be reloaded.
    boolean
    Returns if the reloading is finished
  • Method Details

    • isDone

      boolean isDone()
      Returns if the reloading is finished
      Returns:
      status of reload operation
    • getTotalCount

      int getTotalCount()
      Total number of classes to be reloaded. When reloading is complete it should be equal to the sum of successCount and errorCount
      Returns:
      total number of classes to be reloaded
    • getSuccessCount

      int getSuccessCount()
      Number of classes that failed to reload (e.g. unable to fetch source bytes)
      Returns:
      number of classes that failed to reload (e.g. unable to fetch source bytes)
    • getErrorCount

      int getErrorCount()
      Number of classes that failed to reload (e.g. unable to fetch source bytes)
      Returns:
      number of classes that failed to reload (e.g. unable to fetch source bytes)
    • getMessage

      String getMessage()
      Get a message that describes current status (e.g. the name of jar name being processed)
      Returns:
      message that describes current status (e.g. the name of jar name being processed)
    • getConfigPath

      String getConfigPath()
      Returns the location of configuration file
      Returns:
      location of configuration file