Skip to main content

IActorItemSub

Interface for sub-items that are nested within an actor item.

Namespace: ControlBee.Interfaces

Properties

NameTypeDescription
ActorIActorInternalThe actor that owns the parent item.
ItemPathstringThe hierarchical path of this sub-item.

Methods

UpdateSubItem

Updates the state of this sub-item.

void UpdateSubItem();

OnDeserialized

Called after the sub-item has been deserialized from stored data.

void OnDeserialized();

ProcessMessage

Processes an incoming message directed at this sub-item.

bool ProcessMessage(ActorItemMessage message);

Parameters:

  • message — The message to process.

Returns: true if the message was handled; otherwise, false.

See Also