Package net.engio.mbassy.listener
Annotation Interface Filter
The filter annotation is used to add filters to message listeners.
It references a class that implements the IMessageFilter interface.
The filter will be used to check whether a message should be delivered
to the listener or not.
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionClass
<? extends IMessageFilter> The class that implements the filter.
-
Element Details
-
value
Class<? extends IMessageFilter> valueThe class that implements the filter. IMPORTANT: A filter always needs to provide a non-arg constructor
-