- Introduction
- Unit 1: Beginning Akka.NET
- Unit 2: Intermediate Akka.NET
- Lesson 1:
Config
and Deploying Actors via App.Config - Lesson 2: Using
ReceiveActor
for Better Message Handling - Lesson 3: Using the
Scheduler
to Send Recurring Messages - Lesson 4: Switching Actor Behavior at Run-time with
BecomeStacked
andUnbecomeStacked
- Lesson 5: Using a
Stash
to Defer Processing of Messages
- Lesson 1:
- Unit 3: Advanced Akka.NET
- Lesson 1: Using
Group
routers to divide work among your actors - Lesson 2: Using
Pool
routers to automatically create and manage pools of actors - Lesson 3: How to use HOCON to configure your routers
- Lesson 4: How to perform work asynchronously inside your actors using
PipeTo
- Lesson 5: How to prevent deadlocks with
ReceiveTimeout
- Lesson 1: Using