Class SimpleChannelEventListener<T>
- java.lang.Object
-
- de.quantummaid.eventmaid.channel.internal.events.SimpleChannelEventListener<T>
-
- All Implemented Interfaces:
ChannelEventListener<T>
public final class SimpleChannelEventListener<T> extends Object implements ChannelEventListener<T>
-
-
Constructor Summary
Constructors Constructor Description SimpleChannelEventListener()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexceptionInFilter(T message, Exception e)voidmessageBlocked(T message)voidmessageForgotten(T message)static <T> SimpleChannelEventListener<T>simpleChannelEventListener(PartialCollectingChannelStatisticsCollector statisticsCollector)
-
-
-
Method Detail
-
simpleChannelEventListener
public static <T> SimpleChannelEventListener<T> simpleChannelEventListener(PartialCollectingChannelStatisticsCollector statisticsCollector)
-
messageBlocked
public void messageBlocked(T message)
- Specified by:
messageBlockedin interfaceChannelEventListener<T>
-
messageForgotten
public void messageForgotten(T message)
- Specified by:
messageForgottenin interfaceChannelEventListener<T>
-
exceptionInFilter
public void exceptionInFilter(T message, Exception e)
- Specified by:
exceptionInFilterin interfaceChannelEventListener<T>
-
-