Package com.netcracker.profiler.agent
Interface ReloadStatus
public interface ReloadStatus
-
Method Summary
Modifier and TypeMethodDescriptionReturns the location of configuration fileintNumber of classes that failed to reload (e.g.Get a message that describes current status (e.g.intNumber of classes that failed to reload (e.g.intTotal number of classes to be reloaded.booleanisDone()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
-