Interface EventHandlingMember<T>

Type Parameters:
T - The type of entity to which the message handler will delegate the actual handling of the message.
All Superinterfaces:
MessageHandlingMember<T>

@Internal public interface EventHandlingMember<T> extends MessageHandlingMember<T>
Interface indicating that a MessageHandlingMember is capable of handling specific event messages.
Since:
5.0.0
Author:
Mateusz Nowak
  • Method Details

    • eventName

      String eventName()
      Returns the name of the event that can be handled.

      Might be an empty String when undefined by this handling member, in which case components gathering EventHandlingMembers should fall back to other mechanisms to define the name of a handling member.

      Returns:
      The name of the event that can be handled.