Adding yet another comment to ActorPool

This commit is contained in:
Viktor Klang 2011-03-16 21:18:10 +01:00
parent a5aa5b4a7d
commit 53c8dfff7b

View file

@ -72,7 +72,7 @@ trait DefaultActorPool extends ActorPool { this: Actor =>
select(_delegates) match {
case (selectedDelegates, count) =>
_lastSelectorCount = count
selectedDelegates foreach { _ forward msg }
selectedDelegates foreach { _ forward msg } //Should we really send the same message to several actors?
}
}