use of io.spine.annotation.Experimental in project core-java by SpineEventEngine.
the class BoundedContext method notify.
/**
* Sends an integration event to this {@code BoundedContext}.
*/
@Experimental
@Override
public void notify(IntegrationEvent integrationEvent, StreamObserver<Ack> observer) {
final Event event = EventFactory.toEvent(integrationEvent);
eventBus.post(event, observer);
}
Aggregations