@Override public ModuleLoaderState getModuleLoaderState() { return null; }
@Override public void registerHandshakePlugin(IAppHandshakePluginFactory factory) { Preconditions.checkState(floodlightProvider.getModuleLoaderState() == ModuleLoaderState.INIT, "handshakeplugins can only be registered when the module loader is in state INIT!"); handshakePlugins.add(factory); }
/** * Gets the current module loading state. * @return the current module loading state. */ ModuleLoaderState getModuleLoaderState();
/** * Gets the current module loading state. * 获得当前模块的载入状态 * @return the current module loading state. */ ModuleLoaderState getModuleLoaderState();