Integration / Akka interview questions
Components of an Actor.
Each Actor will have these component to achive the messaging behavior.
- mailbox, (the queue where messages end up)
- behavior (the state of the actor, internal variables, etc.).
- Messages (pieces of data representing a signal, similar to method calls and their parameters).
- Execution environment (the machinery that takes actors that have messages to react to and invokes their message handling code).
- An address.
More Related questions...