Hi.
I have this object:
object ActorInit {
val system = ActorSystem("VisenaRemoteSystem")
val imapStatsActor =
system.actorSelection("akka.tcp://[email protected]:5250/user/ImapStatsActor")
}
Then this code which sends a message to the remote actor:
implicit val timeout = Timeout(5 seconds)
def getLoggedInUserCount: Int = {
val resultFuture = (ActorInit.imapStatsActor ? LoggedInUserCount).mapTo[Int]
Await.result(resultFuture, timeout.duration)
}
Is this fine or should I create a Local Actor in the same actor-system (using
system.actorOf(Props[ImapLocalActor], name = "ImapLocalActor")) and send a
message to that actor which again forwards to the remote-actor.
What is best practice?
Thanks.
--
Andreas
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ:
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.