Interface IDialogMessageBusListener

All Known Implementing Classes:
DefaultDialogMessageBusListener

public interface IDialogMessageBusListener
Listener interface of DialogMessageBus.

There is a default implementation DefaultDialogMessageBusListener that ensures compatibility in case of methods being added to this interface. We recommend to extend the default implementation when developing your own listener implementation.

Please note: the reactOnMessage(Object) method is ALWAYS executed in the UI thread of the application processing - even if the publishing of the message was executed in non-UI thread.

The method checkIfMessageIsRelevant(Object) is ALWAYS executed in the thread of the caller of the dialog message bus.
  • Method Details

    • checkIfMessageIsRelevant

      boolean checkIfMessageIsRelevant(Object o)
    • reactOnMessage

      void reactOnMessage(Object o)