org.enodeframework.eventing.IEventStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.eventing;
import java.util.List;
import java.util.concurrent.CompletableFuture;
public interface IEventStore {
/**
* Batch append the given event streams to the event store async.
*/
CompletableFuture batchAppendAsync(List eventStreams);
/**
* Find a single event stream by aggregateRootId and version async.
*/
CompletableFuture findAsync(String aggregateRootId, int version);
/**
* Find a single event stream by aggregateRootId and commandId async.
*/
CompletableFuture findAsync(String aggregateRootId, String commandId);
/**
* Query a range of event streams of a single aggregate from event store async.
*/
CompletableFuture> queryAggregateEventsAsync(String aggregateRootId, String aggregateRootTypeName, int minVersion, int maxVersion);
/**
* Get the current published version for the given aggregate.
*/
CompletableFuture getPublishedVersionAsync(String aggregateRootTypeName, String aggregateRootId);
}