!act #13919 Make actorFor internal

* until we can replace all internal usages of it, which
  is only in akka-camel
This commit is contained in:
Patrik Nordwall 2015-05-08 10:25:39 +02:00
parent 082b366881
commit 85a5cc61aa
9 changed files with 52 additions and 93 deletions

View file

@ -299,7 +299,7 @@ private[akka] class RemoteActorRefProvider(
}
@deprecated("use actorSelection instead of actorFor", "2.2")
def actorFor(path: ActorPath): InternalActorRef = {
override private[akka] def actorFor(path: ActorPath): InternalActorRef = {
if (hasAddress(path.address)) actorFor(rootGuardian, path.elements)
else try {
new RemoteActorRef(transport, transport.localAddressForRemote(path.address),
@ -312,7 +312,7 @@ private[akka] class RemoteActorRefProvider(
}
@deprecated("use actorSelection instead of actorFor", "2.2")
def actorFor(ref: InternalActorRef, path: String): InternalActorRef = path match {
override private[akka] def actorFor(ref: InternalActorRef, path: String): InternalActorRef = path match {
case ActorPathExtractor(address, elems)
if (hasAddress(address)) actorFor(rootGuardian, elems)
else {
@ -330,7 +330,7 @@ private[akka] class RemoteActorRefProvider(
}
@deprecated("use actorSelection instead of actorFor", "2.2")
def actorFor(ref: InternalActorRef, path: Iterable[String]): InternalActorRef =
override private[akka] def actorFor(ref: InternalActorRef, path: Iterable[String]): InternalActorRef =
local.actorFor(ref, path)
def rootGuardianAt(address: Address): ActorRef =