Skip to content

Predefined Actors

ARn edited this page May 1, 2016 · 2 revisions
Predefined Actors

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.

Clone this wiki locally