io.fluxcapacitor.javaclient.eventsourcing.EventSourcing 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.eventsourcing;
import io.fluxcapacitor.javaclient.common.model.Model;
public interface EventSourcing {
Model load(String id, Class modelType);
void invalidateCache();
EventSourcingRepository repository(Class modelClass);
EventStore eventStore();
}