#include <Task.h>
Public Types | |
| enum | { ACE_READER = 01, ACE_FLUSHDATA = 02, ACE_FLUSHALL = 04, ACE_FLUSHR = 010, ACE_FLUSHW = 020, ACE_FLUSHRW = 030 } |
These flags should be hidden within ACE_Task. Unfortunately, the HP/UX C++ compiler can't grok this... Fortunately, there's no code defined here, so we don't have to worry about multiple definitions.
Definition at line 35 of file Task.h.
|
|
Definition at line 38 of file Task.h.
00039 {
00040 /// Identifies a Task as being the "reader" in a Module.
00041 ACE_READER = 01,
00042 /// Just flush data messages in the queue.
00043 ACE_FLUSHDATA = 02,
00044 /// Flush all messages in the Queue.
00045 ACE_FLUSHALL = 04,
00046 /// Flush read queue
00047 ACE_FLUSHR = 010,
00048 /// Flush write queue
00049 ACE_FLUSHW = 020,
00050 /// Flush both queues
00051 ACE_FLUSHRW = 030
00052 };
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002