diff --git a/akka-actor/src/main/scala/akka/actor/ActorSystem.scala b/akka-actor/src/main/scala/akka/actor/ActorSystem.scala index 0e95325ec3..aafbe1f0e3 100644 --- a/akka-actor/src/main/scala/akka/actor/ActorSystem.scala +++ b/akka-actor/src/main/scala/akka/actor/ActorSystem.scala @@ -234,13 +234,15 @@ abstract class ActorSystem extends ActorRefFactory { /** * Register a block of code to run after all actors in this actor system have - * been stopped. + * been stopped. Multiple code blocks may be registered by calling this method multiple times; there is no + * guarantee that they will be executed in a particular order. */ def registerOnTermination[T](code: ⇒ T) /** * Register a block of code to run after all actors in this actor system have - * been stopped (Java API). + * been stopped. Multiple code blocks may be registered by calling this method multiple times; there is no + * guarantee that they will be executed in a particular order (Java API). */ def registerOnTermination(code: Runnable)