notify abstract method

void notify(
  1. ReactiveNode node
)

Notifies that a reactive node needs processing.

This method is called when a node (typically an effect) needs to be scheduled for execution. The implementation should queue the node for later processing or execute it immediately depending on the system's batching strategy.

Implementation

void notify(ReactiveNode node);