5.6.4.1. vlcp.service.manage.modulemanager

Note

This document is generated from the source file.

View Source on GitHub

Created on 2015/12/2

author:hubo
class vlcp.service.manage.modulemanager.Manager(server)

Manage module loading/unloading. Optionally reload a module when modified.

__init__(server)

Constructor

activeModules()

Return current loaded modules

enableAutoReload(enabled=True)

Enable or disable auto reload.

Parameters:enabled – enable if True, disable if False
loadmodule(path)

Load specified module

Parameters:path – module path (e.g. vlcp.service.connection.httpserver.HttpServer)
reloadmodules(pathlist)

Reload specified modules.

Parameters:pathlist – list of module path
unloadmodule(path)

Unload specified module

Parameters:path – module path (e.g. vlcp.service.connection.httpserver.HttpServer)