-
Notifications
You must be signed in to change notification settings - Fork 3
Predefined Actors
ARn edited this page May 1, 2016
·
2 revisions
The following is the list of given actors in Actor.Base and Actor.Util :
BaseActor
Actor with no predefined behavior. To add a behavior, use Become(new Behavior())
ActionActor
ActionActor have an associated action behavior, use actionActor.SendMessage(() => anAction)
QueueActor QueueActor acts a the standard Queue FIFO data structure. As an actor, the QueueActor is concurrent.
actor.Queue to add an item
actor.TryDequeue to remove an item
StateFullActor StateFullActor are actor with a State, use Set or Get to access the current state.