In concurrent computation, the actor model uses the actor as the basic building block. An actor can:

  • make local decisions
  • create more actors
  • send more messages
  • determine how to respond to the next message received
    They can modify their own private state, but they affect others only through messages.

References

See also