changed event handler dispatcher name

This commit is contained in:
Jonas Bonér 2011-03-14 13:38:27 +01:00
parent dd69a4b763
commit ac0273b5eb
2 changed files with 8 additions and 8 deletions

View file

@ -16,9 +16,9 @@ import akka.actor._
* @author <a href="http://jonasboner.com">Jonas Bon&#233;r</a>
*/
final case class MessageInvocation(val receiver: ActorRef,
val message: Any,
val sender: Option[ActorRef],
val senderFuture: Option[CompletableFuture[Any]]) {
val message: Any,
val sender: Option[ActorRef],
val senderFuture: Option[CompletableFuture[Any]]) {
if (receiver eq null) throw new IllegalArgumentException("Receiver can't be null")
def invoke = try {