Fixed clustered management of actor serializer.
Various renames and refactorings. Changed all internal usages of 'actorOf' to 'localActorOf'. Signed-off-by: Jonas Bonér <jonasremove@jonasboner.com>
This commit is contained in:
parent
1ad99bd610
commit
4d31751793
13 changed files with 200 additions and 303 deletions
|
|
@ -169,7 +169,7 @@ abstract class RemoteSupport extends ListenerManagement with RemoteServerModule
|
|||
val eventHandler: ActorRef = {
|
||||
implicit object format extends StatelessActorFormat[RemoteEventHandler]
|
||||
val clazz = classOf[RemoteEventHandler]
|
||||
val handler = Actor.actorOf(clazz, clazz.getName).start()
|
||||
val handler = Actor.localActorOf(clazz, clazz.getName).start()
|
||||
// add the remote client and server listener that pipes the events to the event handler system
|
||||
addListener(handler)
|
||||
handler
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue