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

io.jexxa.addend.applicationcore.DomainEventHandler Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.jexxa.addend.applicationcore;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/**
 * Represents a handler for processing a {@link DomainEvent}.
 * 

* Note: A {@link DomainEventHandler} has to be used if another component within your application core * handles a {@link DomainEvent} that occurred within the same bounded context. Typically, this is a {@link DomainService}. * */ @Target(METHOD) @Retention(RUNTIME) @Documented public @interface DomainEventHandler { }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy