Force use of IOManager factory methods to create default IOManager. If additional IOManagers are required in an ActorSystem the actors must be started manually

This commit is contained in:
Derek Williams 2012-01-02 22:23:28 -07:00
parent 8894772282
commit d2b8d91569

View file

@ -408,7 +408,7 @@ object IO {
}
final class IOManager(system: ActorSystem) extends Extension {
final class IOManager private (system: ActorSystem) extends Extension {
val actor = system.actorOf(Props[IOManagerActor], "io-manager")
}