Swapped out Scala Actors to a reactor based impl (still restart and linking to do) + finalized transactional persisted cassandra based vector (ref to go)
This commit is contained in:
parent
167b724671
commit
ac52556595
22 changed files with 726 additions and 404 deletions
|
|
@ -36,7 +36,7 @@ class ActorTest {
|
|||
val result = actor ! "OneWay"
|
||||
Thread.sleep(100)
|
||||
assertEquals("received", oneWay)
|
||||
//actor.stop
|
||||
actor.stop
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
@ -46,7 +46,7 @@ class ActorTest {
|
|||
actor.start
|
||||
val result = actor !? "Hello"
|
||||
assertEquals("World", result.get.asInstanceOf[String])
|
||||
//actor.stop
|
||||
actor.stop
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
@ -56,7 +56,7 @@ class ActorTest {
|
|||
actor.start
|
||||
val result = actor !! "Hello"
|
||||
assertEquals("World", result.get.asInstanceOf[String])
|
||||
//actor.stop
|
||||
actor.stop
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
@ -71,6 +71,6 @@ class ActorTest {
|
|||
case e =>
|
||||
assertEquals("expected", e.getMessage())
|
||||
}
|
||||
//actor.stop
|
||||
actor.stop
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue