📄️ Actor System
Actor Systems hold all the information about the location of all the actors on an application, even if they are
📄️ Materializers
Materializers are hooks over the lifecycle of an actor. They are used to add implicit infrastructure logic to an actor. Some
📄️ Resolvers
Resolvers let us find actors that have been persisted in external systems, like databases or storages. One example
📄️ Supervisors
Supervisors are the responsible of handling actor failures and deciding the strategy to recover. There are two types
📄️ Fibers
Fibers represent green threads with a set of resources. Usually, an application will contain only one fiber (because
📄️ Mailboxes
Mailboxes are a queue of messages with guaranteed ordering. Mailboxes have a set of useful properties that make them