summaryrefslogtreecommitdiff
path: root/test/files/jvm/actmig-PinS_2.scala
Commit message (Collapse)AuthorAgeFilesLines
* Removing actors-migration from main repository so it can live on elsewhere.Josh Suereth2012-10-301-159/+0
| | | | | | | * Removes actors-migration hooks from partest * Removes actors-migration code * removes actors-migration tests * removes actors-migration distribution packaging.
* SI-6442 - Add ActorDSL object for actor migration kitphaller2012-09-291-12/+11
| | | | Removes MigrationSystem, since ActorDSL replaces it.
* Support for scala.concurrent for the ActorRef.Vojin Jovanovic2012-09-251-0/+4
| | | | Review by @phaller
* SI-6305 fix.Vojin Jovanovic2012-09-251-1/+2
|
* move Duration (incl. DSL) into scala.concurrent.duration packageRoland2012-09-191-1/+1
| | | | | | | | | so that the full package can be imported naturally: import scala.concurrent.duration._ will give you all the types (Duration, FiniteDuration, Deadline) and the DSL for constructing these.
* Making Actor Migration Tests deterministic.Vojin Jovanovic2012-06-201-0/+155
| | | | Review by: @phaller
* Removing non-deterministic actor migration tests.Vojin Jovanovic2012-05-251-150/+0
| | | | Testing these issues takes significant amounts of time so I am temporarely removing them from the master. The issue is not in the code but in the tests output order.
* Adding the Actor Migration Kit.Vojin Jovanovic2012-05-181-0/+150
Kit consists of: 1) The StashingActor which adopts an interface similar to Akka. 2) Props mockup for creating Akka like code 3) Pattern mockup 4) Test cases for every step in the migration. 5) MigrationSystem which will paired on the Akka side. Review of the code : @phaller Review of the build: @jsuereth