Actor Model

Card Puncher Data Processing

Actor Model

About

The actor model is a very popular concurrency model by Carl Hewitt from MIT introduced in the `70's.

  • An Actor is an agent that receives and sends messages, behaving independently from other actors in the system.
  • On each message, the actor is able to start new actors, compute data or reply with messages to other existing actors.





Discover More
Data System Architecture
Concurrency - Model (Design)

list of asynchronous (concurrent/parallel) design producer-consumer, messaging, promise / future
Card Puncher Data Processing
Data Processing - Data Flow (ETL | Workflow | Pipeline)

A data flow is a workflow specialized for data processing Any system where the data moves between code units and triggers execution of the code could be called dataflow Dataflow_architecturecomputer...
Java Conceptuel Diagram
Java Concurrency - Model

Which concurrency model should you use in @Java? Threads, Actors, Executors, Fork Join, Fibers?
Java Conceptuel Diagram
Vert.x - Verticle

Verticles are the technical units of deployments of code in Vert.x. Verticles share certain similarities with actors in the actor model. Verticles communicate with each other by generating messages...



Share this page:
Follow us:
Task Runner