exopy.app.app_plugin module¶
Application plugin handling the application startup and closing.
-
class
exopy.app.app_plugin.AppPlugin[source]¶ Bases:
enaml.workbench.plugin.PluginA plugin to manage application life cycle.
-
startup¶ Collect all contributed AppStartup extensions.
-
closing¶ Collect all contributed AppClosing extensions.
-
closed¶ Collect all contributed AppClosed extensions.
-
start()[source]¶ Start the plugin life-cycle.
This method is called by the framework at the appropriate time. It should never be called by user code.
-
stop()[source]¶ Stop the plugin life-cycle.
This method is called by the framework at the appropriate time. It should never be called by user code.
-