Top "Actor" questions

Programming model distinguished by ubiquitous asynchronous communication.

libgdx difference between sprite and actor

I'm just going through the javadoc and various tutorials on libgdx and I'm at the stage of trying to figure …

sprite libgdx actor
Scala actors: receive vs react

Let me first say that I have quite a lot of Java experience, but have only recently become interested in …

scala multithreading actor
How does Actors work compared to threads?

Is there any good and short explanation of how Actors works compared to threads? Can't a thread be seen as …

multithreading concurrency actor message-passing
How do I get hold of exceptions thrown in a Scala Future?

I've been working up my answer to Is there a standard Scala function for running a block with a timeout?, …

scala exception-handling concurrency actor
Difference between forward and tell in akka actors

What is a difference between tell and forward, in case I will send the same message: case msg: Message => …

scala akka actor
How is Node.js evented system different than the actor pattern of Akka?

I've worked with Node.js for a little while and consider myself pretty good with Java. But I just discovered …

node.js events akka actor
What's the difference of the Akka's Actor with Scala's Actor model

I found there is also an Akka actor model, so I am wondering what's the difference between the Akka's Actor …

scala actor akka
Blocking calls in Akka Actors

As a newbie, I am trying to understand how actors work. And, from the documentation, I think I understand that …

multithreading scala concurrency akka actor
Differences between AMQP and ZeroMQ

Recently started looking into these AMQP (RabbitMQ, ActiveMQ) and ZeroMQ technologies, being interested in distributed systems/computation. Been Googling and …

distributed-computing actor amqp zeromq
When to use actors in libgdx? What are cons and pros?

I'm writing simple solar system simulator. This is my first libgdx project. I'm using a Stage and Actors for the …

java android actor libgdx stage