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

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

The newest version!
package net.glorat.cqrs

import scala.concurrent.Future
import scala.reflect.ClassTag

trait Repository {
  def save(aggregate: AggregateRoot, expectedVersion: Int) : Future[Unit]
  def getById[T <: AggregateRoot: ClassTag](id: GUID, tmpl: T): T
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy