Anything that manages state and must notify others of state changes has one of these, to allow others to register their desire to observe its state changes.

Constructors

Properties

Methods

Constructors

Properties

current: ActorState = ...

The current state

Methods

  • Receive a state-change request and if it is for a new state, pass it to observers

    Parameters

    • actor: Actor

      The actor whose state is changing

    • event: StateEvent

      The state change event

    Returns void

  • Allow an observer to request notification

    Parameters

    Returns void