1. Implemented replication through transaction log, e.g. logging all messages and replaying them after actor migration

2. Added first replication test (out of many)
3. Improved ScalaDoc
4. Enhanced the remote protocol with replication info

Signed-off-by: Jonas Bonér <jonas@jonasboner.com>
This commit is contained in:
Jonas Bonér 2011-07-08 08:28:13 +02:00
parent 6117e599d6
commit 0b1ee758f5
36 changed files with 893 additions and 550 deletions

View file

@ -18,8 +18,7 @@ import com.eaio.uuid.UUID
* @author Roland Kuhn
* @since 1.1
*/
class TestActorRef[T <: Actor](factory: () T, address: String)
extends LocalActorRef(factory, address, DeploymentConfig.Transient) {
class TestActorRef[T <: Actor](factory: () T, address: String) extends LocalActorRef(factory, address) {
dispatcher = CallingThreadDispatcher.global
receiveTimeout = None