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

org.reactivecommons.api.domain.DomainEventBus Maven / Gradle / Ivy

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