rename ActorSystem.stop() to .shutdown()

This commit is contained in:
Roland 2011-12-14 01:06:20 +01:00
parent 9af58366f6
commit 5eedbdd69f
26 changed files with 44 additions and 44 deletions

View file

@ -168,6 +168,6 @@ public class Pi {
latch.await();
// Shut down the system
system.stop();
system.shutdown();
}
}

View file

@ -102,6 +102,6 @@ object Pi extends App {
latch.await()
// Shut down the system
system.stop()
system.shutdown()
}
}

View file

@ -17,7 +17,7 @@ class WorkerSpec extends WordSpec with MustMatchers with BeforeAndAfterAll {
implicit val system = ActorSystem()
override def afterAll {
system.stop()
system.shutdown()
}
"Worker" must {