com.github.malkomich.event.stream.EventService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of event-stream Show documentation
Show all versions of event-stream Show documentation
Library to abstract publish and subscribe implementation in an event-based arquitecture
The newest version!
package com.github.malkomich.event.stream;
import com.github.malkomich.event.stream.publish.domain.PublishRequest;
import com.github.malkomich.event.stream.subscribe.domain.SubscribeRequest;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
public interface EventService {
void publish(final PublishRequest request, final Handler> handler);
void subscribe(final SubscribeRequest request, final Handler> handler);
void close(final Handler> onClientStopped);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy