schedule abstract method

bool schedule()

Schedules this effect for execution using a custom scheduling strategy.

This method is called by the reactive system when the effect's dependencies change. If this method returns true, the effect will not be added to the default execution queue. If it returns false, the default scheduling behavior will be used.

Returns: true if custom scheduling was handled, false to use default scheduling

Example:

@override
bool schedule() {
  // Schedule for next frame
  scheduleForNextFrame();
  return true; // Custom scheduling handled
}

Implementation

bool schedule();