Interface LifecycleCallbacks

All Superinterfaces:
Serializable
All Known Implementing Classes:
BeanLifecycleCallbacks, MethodLifecycleCallbacks

public interface LifecycleCallbacks extends Serializable
A lifecycle listener that responds to callbacks rather than events.
Author:
Steve Kim
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    hasCallback(Object obj, int eventType)
    Return whether the given instance has a callback for the given event type.
    void
    makeCallback(Object obj, Object related, int eventType)
    Invoke the callback for the given event type on the given instance.
  • Method Details

    • hasCallback

      boolean hasCallback(Object obj, int eventType)
      Return whether the given instance has a callback for the given event type.
    • makeCallback

      void makeCallback(Object obj, Object related, int eventType) throws Exception
      Invoke the callback for the given event type on the given instance.
      Throws:
      Exception