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:
parent
6117e599d6
commit
0b1ee758f5
36 changed files with 893 additions and 550 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue