Hi
I've got a case class

  case class SiteConnectionsWithReverse(siteConnections: Map[Site, 
RoadConnection]) {
    lazy val reversed : Map[RoadConnection, Seq[Site]] = 
siteConnections.groupBy(_._2).map(x => (x._1, x._2.keys.toSeq))
  }

that I pass around.
Reversed could be called in a couple of different actors.
Is it thread safe and lock safe in akka? I had a bit of a google and found 
SIP-20. Should I worry?

-- 
>>>>>>>>>>      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 http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to