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

pl.newicom.dddd.writefront.CommandDirectives.scala Maven / Gradle / Ivy

There is a newer version: 1.6.1
Show newest version
package pl.newicom.dddd.writefront

import akka.http.scaladsl.server._
import akka.http.scaladsl.server.directives.HeaderDirectives._

trait CommandDirectives {

  def commandManifest[T]: Directive1[Manifest[T]] =
    headerValueByName("Command-Type").map[Manifest[T]](ct => Manifest.classType[T](Class.forName(ct)))

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy