MastManager#

class mast_aladin.MastManager[source]#

Bases: object

Coordinates interactions and overall workflow between components of the MAST Aladin ecosystem Ensures seamless integration and communication between applications, plugins, and sidecars.

Attributes Summary

Methods Summary

register_app(app, id)

This is a passthrough method that allows users to register an app to the AppManager directly from the MastManager.This is the recommended way to register apps, as it allows the MastManager to keep track of all registered applications and facilitate communication between them as needed.

Attributes Documentation

AppManager#
apps#

Methods Documentation

register_app(app, id)[source]#

This is a passthrough method that allows users to register an app to the AppManager directly from the MastManager.This is the recommended way to register apps, as it allows the MastManager to keep track of all registered applications and facilitate communication between them as needed.

Parameters:
  • app (object) – The application instance to be registered.

  • id (str) – A unique identifier for the application.