3 This directory contains several examples that illustrate how to use
4 various concurrency mechanisms to schedule and handle timer-based
5 events. All programs are interactive and utilize a common timer queue
6 test framework. You can schedule or cancel time events and list all
7 the timers that are waiting to be triggered.
11 Reactor_Timer_Queue_Test:
12 -------------------------
14 This example shows how to use ACE_Reactor as the timer queue
17 Thread_Timer_Queue_Test:
18 ------------------------
20 This example shows how to use threads as the mechanism to generate
23 Async_Timer_Queue_Test:
24 -----------------------
26 This example shows how to use singals as the mechanism to generate
27 timer queue events. It doesn't work on NT because of NT's limited
28 signal mechanism, i.e., no support for SIGALRM.