Renaming EBEDD to Dispatcher, EBEDWSD to BalancingDispatcher, ThreadBasedDispatcher to PinnedDispatcher and PEBEDD to PriorityDispatcher, closing ticket #784

This commit is contained in:
Viktor Klang 2011-05-20 22:41:41 +02:00
parent 1f024f1c9e
commit 3181905fed
28 changed files with 156 additions and 156 deletions

View file

@ -1580,7 +1580,7 @@ object RemoteClusterDaemon {
val ADDRESS = "akka-cluster-daemon".intern
// FIXME configure functionServerDispatcher to what?
val functionServerDispatcher = Dispatchers.newExecutorBasedEventDrivenDispatcher("akka:cloud:cluster:function:server").build
val functionServerDispatcher = Dispatchers.newDispatcher("akka:cloud:cluster:function:server").build
}
/**
@ -1591,7 +1591,7 @@ class RemoteClusterDaemon(cluster: ClusterNode) extends Actor {
import RemoteClusterDaemon._
import Cluster._
self.dispatcher = Dispatchers.newThreadBasedDispatcher(self)
self.dispatcher = Dispatchers.newPinnedDispatcher(self)
def receive: Receive = {
case message: RemoteDaemonMessageProtocol