Interface MuyanPlatformComponent


  • public interface MuyanPlatformComponent
    A component that can be loaded and unloaded within the Muyan Low Code Development Platform.
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default void offLoad()
      Invoked when the Muyan Low Code Development Platform unloads the plugin containing this component.
      default void onLoad()
      Invoked when the Muyan Low Code Development Platform loads the plugin containing this component.
    • Method Detail

      • onLoad

        default void onLoad()
        Invoked when the Muyan Low Code Development Platform loads the plugin containing this component.

        This method is called automatically by the platform when the plugin is loaded. Implementations can override this method to perform any necessary initialization or setup tasks.

      • offLoad

        default void offLoad()
        Invoked when the Muyan Low Code Development Platform unloads the plugin containing this component.

        This method is called automatically by the platform when the plugin is unloaded. Implementations can override this method to perform any necessary cleanup or teardown tasks.