Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / ACE / examples / Timer_Queue / README
blob755789b9f5bae210e9a08ce6ae1231b28ca1b788
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.
9 The tests include:
11 Reactor_Timer_Queue_Test:
12 -------------------------
14 This example shows how to use ACE_Reactor as the timer queue
15 management mechanism.
17 Thread_Timer_Queue_Test:
18 ------------------------
20 This example shows how to use threads as the mechanism to generate
21 timer queue events.
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.