org.enodeframework.commanding.ITrackingContext.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.commanding
import org.enodeframework.domain.IAggregateRoot
interface ITrackingContext {
/**
* Get all the tracked aggregates.
*/
val trackedAggregateRoots: List
/**
* Clear the tracking context.
*/
fun clear()
}