Interface IComponentInitializationListener

All Known Implementing Classes:
ComponentInitializationListenerCollection
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

Listener interface that receives messages when components are initialized (after Component#onInitialize method has been executed). Implementations must be thread safe
Author:
Igor Vaynberg
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called for every component after its Component#onInitialize method has been executed.
  • Method Details

    • onInitialize

      void onInitialize(Component component)
      Called for every component after its Component#onInitialize method has been executed.
      Parameters:
      component - the component that is being instantiated.