Class TestEventListenerCountingEvents<T extends AbstractEvent>
java.lang.Object
de.hybris.platform.servicelayer.event.impl.AbstractEventListener<T>
de.hybris.platform.yacceleratorfulfilmentprocess.test.events.TestEventListenerCountingEvents<T>
- Type Parameters:
T-
- All Implemented Interfaces:
EventListener,org.springframework.beans.factory.Aware,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationContextAware,org.springframework.context.ApplicationListener<T>
- Direct Known Subclasses:
FraudCheckIntegrationTest.OrderFraudCustomerEventListener,FraudCheckIntegrationTest.OrderFraudEmployeeEventListener,FraudCheckIntegrationTest.OrderPlacedEventListener
public class TestEventListenerCountingEvents<T extends AbstractEvent>
extends AbstractEventListener<T>
Event Listener which only count number of onEvent() invocations
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintprotected voidThis method is called byApplicationListener.onApplicationEvent(ApplicationEvent)and processes the given event.voidreset counter which store number of onEvent() invocationsMethods inherited from class de.hybris.platform.servicelayer.event.impl.AbstractEventListener
afterPropertiesSet, onApplicationEvent, setApplicationContext, setClusterService, setTenantService
-
Constructor Details
-
TestEventListenerCountingEvents
public TestEventListenerCountingEvents()
-
-
Method Details
-
onEvent
Description copied from class:AbstractEventListenerThis method is called byApplicationListener.onApplicationEvent(ApplicationEvent)and processes the given event.- Specified by:
onEventin classAbstractEventListener<T extends AbstractEvent>- Parameters:
event- the event to be processed- See Also:
-
ApplicationListener.onApplicationEvent(ApplicationEvent)
-
getNumberOfEvents
public int getNumberOfEvents()- Returns:
- number of onEvent invocation since beginning or last resetCounter() invocation
-
resetCounter
public void resetCounter()reset counter which store number of onEvent() invocations
-