pekko/akka-actor/src/main/scala/akka/routing/package.scala

11 lines
200 B
Scala
Raw Normal View History

/**
* Copyright (C) 2009-2011 Typesafe Inc. <http://www.typesafe.com>
*/
package akka
package object routing {
2011-12-13 17:53:59 +01:00
type Route = PartialFunction[(akka.actor.ActorRef, Any), Iterable[Destination]]
}