Tagged Questions
1
vote
3answers
324 views
Passing a value from one actor to another in scala
Can any of you please help me in understanding the basic message passing in
scala using Actor Model?
I'm trying to write a simple program with 3 actors.
Actor "BossActor" creates 2 actors "Actor1" ...
3
votes
1answer
342 views
Scala message bus implementation by Actors?
I want to implement some kind of message bus in one of my Scala applications. The features would be:
ability to subscribe to 1 .. N types of messages
messages may have payloads
loose coupling (nodes ...
3
votes
1answer
314 views
What are messages in actor programming?
This question describes what actors are in actor programming. What are messages? How can you avoid shared state if you send an object in a message (assuming objects exist in actor programming)?
3
votes
2answers
741 views
scala actor message definition
Do i need to define class for message i want to retrieve on a scala actor?
i trying to get this up
where am i wrong
def act() {
loop {
react {
case Meet => foundMeet = ...