|
When a MIB module is unloaded, it dereferences all the node information corresponding to the unloaded module. When the MIB file is loaded again, a new reference for the MIB module is created. The MIB module is unloaded only if it is present in the module list.
The method unloadMibModule(MibModule module) is used to unload the MIB module, given the MibModule instance.
The method unloadMibModule(String name) is used to unload MIB module by giving the name of the module, if present. Otherwise, it returns null.
The method unloadAllMibModules() is used to unload all the MIB modules loaded in a MibOperations instance.
|