Introduction to Zio Actors
Table of Contents
Introduction to ZIO Actors In this post I am going to do a quick introduction to using the ZIO Actors, a library that implements the Actor model using Scala and ZIO a library for asynchroneous and concurrent programming. Before reading this post it is recommended that you read my two earlier posts Introduction to the Actor Model and Introduction to Akka Typed Using Scala as I have assumed the reader will be familiar with the concepts discussed in those posts. Some basic knowledge of ZIO is assumed. I will be going through the same example as I covered in my Introduction to Akka post, only this time I am using ZIO Actors instead of Akka. To get start we are going to build a simple mailing list application where a persons name and email address are added to a datastore and we are able to retrieve their details and remove them from the datastore. As the scope of this example is to show how we can use zio actors to build an application, our data store will be a pretend one. The diagram below illustrates the actors that we will need and the message flow between each actor. Lets start by defining the types of the messages our actors are going to be passing. First our actors are going to be sending on of three types of commands to either add, remove or get a subscriber from the datastore: The message type to add a subscriber: The message type for sending a reply to the requester: The exception type if an invalid message is sent to an actor: The message type of message retrieved from the datastore when a When creating actors we need to define how the actor reacts to messages and how they are processed. Looking at the above code you will see that we are creating a Stateful is the data type we use to describe a behavior with zio-actors: What do the type parameters represents: Looking at the code snippet above you will see a new By creating a new From the pattern matching you can see that if you do not receive a message of type The This actor is responsible for adding, removing and fetching a Similar to the [Validate Email Address Actor]({{< ref “introduction-to-zio-actors.md#how-validate-email-address-actor-work-” >}}), this actor creates a new stateful with same type parameters. Overrides With ZIO Actors as everything is a ZIO effect we can use a for comprehension to create our system. Looking at the above code snippet you can see we start by creating an In this post I have just tried to give you a feel for what its like to use zio-actors, how to think about your application in terms of Actors and message passing and to get started. As you can see zio-actors leverages ZIO as a library and functional programmming to the max leading to a very composable and readable solution. zio-actors has many other features and patterns of use which I will be blogging in more details about in the future so follow my post as I try to share my learnings with everyone. Problem to solve
ZIO Actor System
: Creates the actor system and spawns all the actors.Validate Email Address Actor
: Validates if the new message received has a valid email addressDatastore Actor
: Decides which datastore Command
(i.e. Add
, Get
or Remove
) we are actioning and calls the relevant actor with the message.Add Action Actor
: Uses the message received to add the received subscriber to the database.Get Subscriber Actor
: Retrieves a subscriber from the database.Remove Subscriber Actor
: Removes a subscriber from the database. Messages and Types
sealed
final extends Command
final extends Command
final extends Command
sealed
final (
firstName: String,
lastName: String,
emailAddress: String,
command: Command,
db: ActorRef[Protocol],
replyTo: ActorRef[Protocol]
) extends Protocol[Unit]
final (subscriberId: Long, from: ActorRef[Protocol])
extends Protocol[Unit]
(msg: String) extends Throwable
Get
command is received:final (
firstName: String,
lastName: String,
emailAddress: String
) extends Protocol[Unit]
Validate Email Address Actor
val subscriber = new Stateful
Stateful
. What is Stateful
Stateful
R
represents the environment type (similar to R
in ZIO[R, E, A]
)S
represents the state of the actor that gets updated after every message.F
represents the message the actor will receive to process. How Validate Email Address Actor Work
Stateful
is created, for the R
(environment type) we are passing Console which is an Environment provided by ZIO which allows you to log messages to the console. The state of this actor does not change after each message is processed and hence it S
type which represents state is set to Unit
. Protocol
is the types of messages our actor can process. We went through definition of this type [earlier in the post]({{< ref “introduction-to-zio-actors.md#messages-and-types-” >}}).Stateful
we override its receive
method (similar to akka
) that implements the actual behavior. Here we pattern match on the message received to make sure it is of type Message
and if so we use a for comprehension to go through a few steps:isValid
method to verify it contains a valid email address. Only continue if valid.ActorRef
for self
, i.e. the current actor.ActorRef
to reply to. Send a message SubscribedMessage
to this actor (this includes the ActorRef
of self that was obtained in the last step).Message
, IO.fail
which is provided by ZIO
is used to surface the failure.receive
method returns RIO[Console, (Unit, A)]
which is an alias for ZIO[Console, Throwable, (Unit, A)]
which highlights that a tuple is returned for a success. Datastore Actor
Customer
from the datastore. val datastore = new Stateful
receive
to implement behavior. Pattern match the received message to make sure it is of type Message
and if not does IO.fail
. If correct message it does the following: Creating the Actor System
val program = for {
actorSystemRoot <- ActorSystem("salarTestActorSystem")
subscriberActor <- actorSystemRoot.make("subscriberActor", Supervisor.none, (), subscriber)
datastoreActor <- actorSystemRoot.make("datastoreActor", Supervisor.none, (), datastore)
replyActor <- actorSystemRoot.make("replyActor", Supervisor.none, (), reply)
_ <- subscriberActor ! Message(
"Salar",.
"Rahmanian",
"[email protected]",
Add,
datastoreActor,
replyActor
)
_ <- zio.clock.sleep(Duration.Infinity)
} yield ()
ActorSystem
. We then use the .make
property of our ActorSystem
to create all the actors. Now we are ready to create our Message
and start sending to the message to the subscriberActor
we created. As you can see the ActorRef
of the dataStoreActor
and replyActor
are included in the message so that the correct actor is used to store the message and the correct actor is used to send the reply. Summary
Useful Resources