All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evento.parser.model.handler.EventSourcingHandler Maven / Gradle / Ivy

The newest version!
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() { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy