You can use local, group or network messaging at the same time. In
the main loop (manager.tick), it will attempt to process all three
types of messages. It should just work.
The best way for me to help is if you can provide a minimal sample of
code to illustrate what you need and I can share with you what I think
is the best way to approach it.
John
> --
> You received this message because you are subscribed to the Google Groups
> "pysage" group.
> To post to this group, send email to pys...@googlegroups.com.
> To unsubscribe from this group, send email to
> pysage+un...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/pysage?hl=en.
>
I believe you are referring to this example:
http://code.google.com/p/pysage/source/browse/trunk/example/cluster/server.py
when you did this:
mgr.queue_message(BombMessage(damage=10))
The "BombMessage" message will be sent locally, but you'll need an
actor that is subscribed to that message.
Now I see your email that you've solved your problem :)
John