📜 ⬆️ ⬇️

Akka.NET Bootcamp - Part 1: Starting Level Akka.NET

image

In the first part, you will learn the basics of how the model of actors and Akka.NET work.

Concepts that you learn




In * NIX systems there is a tail utility, built-in monitoring of changes in the file, which Windows does not have. We will re-create tail for Windows and in the process we will learn fundamental things.
')
In the first part, we learn:
  1. How to create your own ActorSystem and actors.
  2. How to send messages to actors and how to handle different types of messages.
  3. How to use Props and ActorRef in building loosely coupled systems
  4. How to use paths of actors, their addresses, and ActorSelection to send messages to actors
  5. How to create descendants of actors (child actors) and a hierarchy of actors, and how to control descendants using SupervisionStrategy
  6. How to use the life cycle of an actor to control the behavior of starting, shutting down and restarting an actor


Do you use Xamarin?





The lessons in the first part rely on the console and you need to do some tricks before you begin. You need to modify the WinTail project file (not the solution file) to use external console

For this:




Content





Source: https://habr.com/ru/post/253555/


All Articles