From 41cd0fcf45ef07de141612f05126d8a0a0847351 Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Mon, 28 May 2012 17:13:57 +0200 Subject: [PATCH] Making dispatcher in ActorRefFactory public and implicit, by request from Matthias Doenitz (spray.cc) --- akka-actor/src/main/scala/akka/actor/ActorRefProvider.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-actor/src/main/scala/akka/actor/ActorRefProvider.scala b/akka-actor/src/main/scala/akka/actor/ActorRefProvider.scala index 41473e7f7c..bbb71bc474 100644 --- a/akka-actor/src/main/scala/akka/actor/ActorRefProvider.scala +++ b/akka-actor/src/main/scala/akka/actor/ActorRefProvider.scala @@ -163,9 +163,9 @@ trait ActorRefFactory { */ protected def provider: ActorRefProvider /** - * INTERNAL USE ONLY + * Returns the default MessageDispatcher used by this ActorRefFactory */ - protected def dispatcher: MessageDispatcher + implicit def dispatcher: MessageDispatcher /** * Father of all children created by this interface.