Implemented a couple of router types. Updated some tests. See #1440
This commit is contained in:
parent
fd7a041c09
commit
a7886abdf0
6 changed files with 359 additions and 566 deletions
|
|
@ -8,7 +8,7 @@ import akka.dispatch._
|
|||
import akka.japi.Creator
|
||||
import akka.util._
|
||||
import collection.immutable.Stack
|
||||
import akka.routing.{ NoRouting, RouterConfig, RoutedProps }
|
||||
import akka.routing.{ NoRouter, RouterConfig }
|
||||
|
||||
/**
|
||||
* ActorRef configuration object, this is threadsafe and fully sharable
|
||||
|
|
@ -29,7 +29,7 @@ object Props {
|
|||
case _ ⇒ Escalate
|
||||
}
|
||||
|
||||
final val defaultRoutedProps: RouterConfig = NoRouting
|
||||
final val defaultRoutedProps: RouterConfig = NoRouter
|
||||
|
||||
final val defaultFaultHandler: FaultHandlingStrategy = OneForOneStrategy(defaultDecider, None, None)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue