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

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

The newest version!
package net.glorat.cqrs

import scala.concurrent.Future

trait CommandHandler {
  // Could have improved modelling here beyond Unit, since Command
  // failures aren't really Exception-al
  def receive: PartialFunction[Command, Future[Unit]]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy