资 源 简 介
Actorom : Java-based Actors Object Model
Actorom is a pure Java implementation of the Actors Concurrency Model, aimed at making message-passing concurrency mainstream in everyday Java development.
Features
Based on Java 5 and annotations.
Intuitive, minimal APIs.
Object model best fitting the main concepts behind the Actors model.
Support for local, in-memory, actors, as well as remote actors based on the client/server paradigm.
Support for lightweight threads, as well as native ones.
Very fast.
Linearly scalable.
Actorom and the Actors Concurrency Model
The Actors Concurrency Model is a form of message-passing concurrency, based on the following concepts:
Actor: the computational unit capable of sending messages and reacting to received ones by executing a given function.
Message: the form of communication us