Actor system for the JVM developed by Electronic Arts
1–10 of 95 posts
Re: Actor system for the JVM developed by Electronic Arts
#2Re: Actor system for the JVM developed by Electronic Arts
#3Could anybody elaborate on this? How does an actor differ from an object that uses promises to talk to a server?
Re: Actor system for the JVM developed by Electronic Arts
#4The repository has virtually no activity since september 2020.
Re: Actor system for the JVM developed by Electronic Arts
#5> Orbit is a framework to write distributed systems using virtual actors on the JVM. A virtual actor is an object that interacts with the world using asynchronous messages. Could anybody elaborate on this? How does an actor differ from an object that uses promises to talk to a server?
When people talk about actor-based languages or frameworks however, theyre suggesting syntax primitives which help express this more naturally.
The simple pitch is: OO where objects could be on any machine.
Re: Actor system for the JVM developed by Electronic Arts
#6> Orbit is a framework to write distributed systems using virtual actors on the JVM. A virtual actor is an object that interacts with the world using asynchronous messages. Could anybody elaborate on this? How does an actor differ from an object that uses promises to talk to a server?
Re: Actor system for the JVM developed by Electronic Arts
#7> Orbit is a framework to write distributed systems using virtual actors on the JVM. A virtual actor is an object that interacts with the world using asynchronous messages. Could anybody elaborate on this? How does an actor differ from an object that uses promises to talk to a server?
Re: Actor system for the JVM developed by Electronic Arts
#8> Orbit is a framework to write distributed systems using virtual actors on the JVM. A virtual actor is an object that interacts with the world using asynchronous messages. Could anybody elaborate on this? How does an actor differ from an object that uses promises to talk to a server?
Re: Actor system for the JVM developed by Electronic Arts
#9> Orbit is a framework to write distributed systems using virtual actors on the JVM. A virtual actor is an object that interacts with the world using asynchronous messages. Could anybody elaborate on this? How does an actor differ from an object that uses promises to talk to a server?
But I’m actor systems the actors maybe more stateful that you typical object and be location transparent. Communication between actors does require knowledge of if another actor is in process or remote.
Also the actor supervising model is a completely different way of recovering from errors than in OO systems.