All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.glorat.cqrs.AggregateRootState.scala Maven / Gradle / Ivy

The newest version!
package net.glorat.cqrs

/**
  * Must be a value object
  * Current implementation extends Product to strongly encourage use of case class in Scala
  */
trait AggregateRootState extends Product {
  /**
    * State class must handle any events with no exception
    * @param e domain event
    * @return modified state
    */
  def handle(e:DomainEvent) : AggregateRootState
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy