Initial commit of dispatcher key refactoring, for review. See #1458
* Changed signatures and constructor of MessageDispatcherConfigurator * Changed Dispatchers.lookup, keep configurators instead of dispatchers * Removed most of the Dispatchers.newX methods, newDispatcher is still there because of priority mailbox * How should we make it easy to configure priority mailbox? * Changed tons tests * Documentation and ScalaDoc is not updated yet * Some tests in ActorModelSpec are temporary ignored due to failure
This commit is contained in:
parent
92bb4c5afb
commit
f772b0183e
53 changed files with 627 additions and 496 deletions
|
|
@ -62,8 +62,7 @@ class NetworkEventStream(system: ActorSystemImpl) {
|
|||
|
||||
// FIXME: check that this supervision is correct, ticket #1408
|
||||
private[akka] val sender =
|
||||
system.systemActorOf(Props[Channel].copy(dispatcher = system.dispatcherFactory.newPinnedDispatcher("NetworkEventStream")),
|
||||
"network-event-sender")
|
||||
system.systemActorOf(Props[Channel].withDispatcher("akka.remote.network-event-sender-dispatcher"), "network-event-sender")
|
||||
|
||||
/**
|
||||
* Registers a network event stream listener (asyncronously).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue