org.reactivecommons.api.domain.DomainEventBus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domain-events-api Show documentation
Show all versions of domain-events-api Show documentation
Abstract your broker with semantic async messages
The newest version!
package org.reactivecommons.api.domain;
import io.cloudevents.CloudEvent;
import org.reactivestreams.Publisher;
public interface DomainEventBus {
Publisher emit(DomainEvent event);
Publisher emit(String domain, DomainEvent event);
Publisher emit(CloudEvent event);
Publisher emit(String domain, CloudEvent event);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy