Moved all 'akka.remote' to 'akka.cluster', no more 'remote' package.

Signed-off-by: Jonas Bonér <jonas@jonasboner.com>
This commit is contained in:
Jonas Bonér 2011-08-29 11:44:33 +02:00
parent 43bbc199b2
commit 66f339e202
34 changed files with 1068 additions and 1033 deletions

View file

@ -18,7 +18,7 @@ If you deploy Akka in a JEE container, don't forget to create an Akka initializa
package com.my //<--- your own package
import akka.util.AkkaLoader
import akka.remote.BootableRemoteActorService
import akka.cluster.BootableRemoteActorService
import akka.actor.BootableActorLoaderService
import javax.servlet.{ServletContextListener, ServletContextEvent}
@ -63,7 +63,7 @@ If you want to use akka-camel or any other modules that have their own "Bootable
.. code-block:: scala
package com.my //<--- your own package
import akka.remote.BootableRemoteActorService
import akka.cluster.BootableRemoteActorService
import akka.actor.BootableActorLoaderService
import akka.camel.CamelService
import javax.servlet.{ServletContextListener, ServletContextEvent}

View file

@ -580,7 +580,7 @@ So a simple listener actor can look like this:
import akka.actor.Actor
import akka.actor.Actor._
import akka.remoteinterface._
import akka.cluster._
val listener = actorOf(new Actor {
def receive = {
@ -638,7 +638,7 @@ So a simple listener actor can look like this:
import akka.actor.Actor
import akka.actor.Actor._
import akka.remoteinterface._
import akka.cluster._
val listener = actorOf(new Actor {
def receive = {