org.enodeframework.eventing.IEventStore.kt 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.concurrent.CompletableFuture
interface IEventStore {
/**
* Batch append the given event streams to the event store async.
*/
fun batchAppendAsync(eventStreams: List): CompletableFuture
/**
* Find a single event stream by aggregateRootId and version async.
*/
fun findAsync(aggregateRootId: String, version: Int): CompletableFuture
/**
* Find a single event stream by aggregateRootId and commandId async.
*/
fun findAsync(aggregateRootId: String, commandId: String): CompletableFuture
/**
* Query a range of event streams of a single aggregate from event store async.
*/
fun queryAggregateEventsAsync(aggregateRootId: String, aggregateRootTypeName: String, minVersion: Int, maxVersion: Int): CompletableFuture>
}