Interface EventDispatcher
-
- All Known Implementing Classes:
AbstractEventDispatcher,DebeziumTracerEventDispatcher,DefaultEventDispatcher
public interface EventDispatcherContract for a Debezium Outbox event dispatcher.- Author:
- Chris Cranford
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonExportedEvent(ExportedEvent<?,?> event)An event handler forExportedEventevents and will be called when the event fires.
-
-
-
Method Detail
-
onExportedEvent
void onExportedEvent(@Observes ExportedEvent<?,?> event)An event handler forExportedEventevents and will be called when the event fires.- Parameters:
event- the exported event
-
-