Interface BundleEntrypoint


public interface BundleEntrypoint
An Entrypoint to a Bundle.
  • Method Summary

    Modifier and Type
    Method
    Description
    default Priority
    Returns the Priority of this Entrypoint.
    void
    Called when the bundle is loaded.
    void
    Called when the bundle is reloaded or removed.
  • Method Details

    • getPriority

      default Priority getPriority()
      Returns the Priority of this Entrypoint.
      Returns:
      the priority, NORMAL by default
    • onLoad

      void onLoad()
      Called when the bundle is loaded.
    • onUnload

      void onUnload()
      Called when the bundle is reloaded or removed.