public interface CompilationMonitor
CompilationMonitor interface is implemented by classes that are supposed to monitor
the progress of a multi MIB file compilation operation of the SmiManager.| Modifier and Type | Method and Description |
|---|---|
boolean |
compilationProgress(String moduleName,
int current,
int maxCount)
Notifies about the current compilation progress.
|
boolean |
loadingProgress(String fileName,
int current,
int maxCount)
Notifies about the current loading (IO) progress.
|
boolean |
sortingProgress(String fileName,
int current,
int maxCount)
Notifies about the current sorting progress.
|
boolean loadingProgress(String fileName, int current, int maxCount)
fileName - the name of the currently processed MIB or ZIP file.current - the index of the current file (zero based).maxCount - the maximum count of files to be processed.false if the compilation (loading) should be aborted.boolean sortingProgress(String fileName, int current, int maxCount)
fileName - the name of the currently processed MIB or ZIP file.current - the index of the current file (zero based).maxCount - the maximum count of files to be processed.false if the compilation (sorting) should be aborted.boolean compilationProgress(String moduleName, int current, int maxCount)
moduleName - the name of the last compiled MIB module.current - the index of the current MIB module (zero based).maxCount - the maximum count of MIB modules to be compiled.false if the compilation should be aborted.Copyright © 2015 SNMP4J.com. All Rights Reserved.