IActorItemSub
Interface for sub-items that are nested within an actor item.
Namespace: ControlBee.Interfaces
Properties
| Name | Type | Description |
|---|---|---|
Actor | IActorInternal | The actor that owns the parent item. |
ItemPath | string | The 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.