
com.github.rahulsom.grooves.functions.EventsProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grooves-core Show documentation
Show all versions of grooves-core Show documentation
Simpler implementation of Grooves
The newest version!
package com.github.rahulsom.grooves.functions
import com.github.rahulsom.grooves.logging.Trace
import java.util.stream.Stream
/**
* Provides events that are later than the last known snapshot up until the version specified.
* If the version specified is null, then all events are returned.
*/
interface EventsProvider {
@Trace
fun invoke(
aggregates: List,
versionOrTimestamp: VersionOrTimestamp?,
lastSnapshot: Snapshot
): Stream
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy