* @brief Consumer callback for status request waiting * * Represents tasks that wait for specific events before executing. * Used to test event-driven coordination and dependency management. */
| 169 | * Used to test event-driven coordination and dependency management. |
| 170 | */ |
| 171 | void consumer_callback() { |
| 172 | advanced_callback_counter++; |
| 173 | advanced_test_output.push_back("consumer_executed"); |
| 174 | std::cout << "Consumer executed at " << millis() << "ms" << std::endl; |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * @brief First consumer callback for multi-consumer tests |