links: Software Design Patterns MOC
Actor Model
Actor model is a design pattern extensively used in Erlang and Elixir.
Actor model basically works in a way that there will be one process to manage all actors. The job of actor is
- Actor can have internal state.
- Actor can consume messages via mail box or apply some work with the data
tags: design-pattern