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
1. Actor can have internal state.
2. Actor can consume messages via mail box or apply some work with the data
---
tags: #design-pattern