com.evento.parser.model.handler.EventSourcingHandler Maven / Gradle / Ivy
Show all versions of evento-parser Show documentation
package com.evento.parser.model.handler;
import com.evento.parser.model.payload.DomainEvent;
/**
* EventSourcingHandler is a class that represents a handler for domain events produced by an Aggregate.
* It extends the Handler class and inherits its properties and methods.
*
* Usage example:
* EventSourcingHandler handler = new EventSourcingHandler(payload, line);
*/
public class EventSourcingHandler extends Handler {
/**
* EventSourcingHandler is a class that represents a handler for domain events produced by an Aggregate.
* It extends the Handler class and inherits its properties and methods.
*
* Usage example:
* EventSourcingHandler handler = new EventSourcingHandler(payload, line);
* @param payload the Domain Event
* @param line the file line
*/
public EventSourcingHandler(DomainEvent payload, int line) {
super(payload, line);
}
/**
* EventSourcingHandler is a class that represents a handler for domain events produced by an Aggregate.
* It extends the Handler class and inherits its properties and methods.
*/
public EventSourcingHandler() {
}
}