You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to akka...@googlegroups.com
This is likely a very dumb question, but, everyone has been very helpful on the dynamic loading piece, and before I come up with a very dumb answer.....
If I have a series of actors, some of which could be remote, and I want to pass them a message such as the following
class MyMessage (
var lastIndex : Integer = 0
,,,,
)
Am I correct that this is an issue? The message is mutable, is there a case where a message could be in a "synchronization crisis"? I can't imagine, if I'm passing this around, that two actors could be working on this message, but given it's mutable, it could happen. This is the wrong way to do things I suppose.
Jonas Bonér
unread,
Jan 29, 2013, 8:21:30 AM1/29/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to akka...@googlegroups.com
There are no dumb questions on this ML.
If you just do a safe handoff i.e. let go of and never touch the
message after you have sent it off, then you are fine.
But it is as you say not recommended practice, far from it.
It is only you that can screw things up, Akka will not tamper with
your message in any way.