org.codegas.commons.domain.event.DomainEventSubscriber Maven / Gradle / Ivy
package org.codegas.commons.domain.event;
public interface DomainEventSubscriber {
Class getSubscribedEventType();
void handleEvent(T domainEvent);
}
package org.codegas.commons.domain.event;
public interface DomainEventSubscriber {
Class getSubscribedEventType();
void handleEvent(T domainEvent);
}