io.fluxcapacitor.javaclient.publishing.EventGateway Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Default Java client library for interfacing with Flux Capacitor.
package io.fluxcapacitor.javaclient.publishing;
import io.fluxcapacitor.common.Registration;
import io.fluxcapacitor.common.api.Metadata;
public interface EventGateway {
void publish(Object event);
void publish(Object payload, Metadata metadata);
Registration registerLocalHandler(Object handler);
}