Interface AnalyticsListener

All Superinterfaces:
Plugin
All Known Implementing Classes:
LiquibaseAnalyticsListener, NoOpAnalyticsListener

public interface AnalyticsListener extends Plugin
The UsageAnalyticsListener interface extends the Plugin interface and is designed for handling events related to usage analytics. Implementations of this interface should define how specific events are handled.
  • Method Details

    • getPriority

      int getPriority()
    • handleEvent

      void handleEvent(Event event) throws Exception
      Handles the specified event. Implementations of this method should define the logic for processing the event that is passed as a parameter.
      Parameters:
      event - the event to be handled.
      Throws:
      Exception