#include <Unbounded_Queue.h>
Collaboration diagram for ACE_Unbounded_Queue_Iterator:

Public Methods | |
| ACE_Unbounded_Queue_Iterator (ACE_Unbounded_Queue< T > &q, int end=0) | |
| int | next (T *&next_item) |
| Pass back the next_item that hasn't been seen in the queue. Returns 0 when all items have been seen, else 1. More... | |
| int | advance (void) |
| Move forward by one element in the set. Returns 0 when all the items in the queue have been seen, else 1. More... | |
| int | first (void) |
| Move to the first element in the queue. Returns 0 if the queue is empty, else 1. More... | |
| int | done (void) const |
| Returns 1 when all items have been seen, else 0. More... | |
| void | dump (void) const |
| Dump the state of an object. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Private Attributes | |
| ACE_Node< T > * | current_ |
| Pointer to the current node in the iteration. More... | |
| ACE_Unbounded_Queue< T > & | queue_ |
| Pointer to the queue we're iterating over. More... | |
Definition at line 37 of file Unbounded_Queue.h.
|
||||||||||||||||
|
Definition at line 382 of file Unbounded_Queue.cpp.
|
|
||||||||||
|
Move forward by one element in the set. Returns 0 when all the items in the queue have been seen, else 1.
Definition at line 390 of file Unbounded_Queue.cpp. References current_, and queue_. Referenced by ACE_Select_Reactor_Notify::close, ACE_Dev_Poll_Reactor_Notify::close, ACE_ARGV::create_buf_from_queue, ACE_Unbounded_Queue::dump, ACE_Stats::mean, ACE_Service_Config::process_commandline_directives, ACE_Service_Config::process_directives, and ACE_Stats::std_dev.
|
|
||||||||||
|
Returns 1 when all items have been seen, else 0.
Definition at line 406 of file Unbounded_Queue.cpp. References ACE_TRACE, current_, and queue_. Referenced by ACE_ARGV::create_buf_from_queue, ACE_Stats::mean, and ACE_Stats::std_dev.
|
|
||||||||||
|
Dump the state of an object.
Definition at line 376 of file Unbounded_Queue.cpp.
00377 {
00378 // ACE_TRACE ("ACE_Unbounded_Queue_Iterator<T>::dump");
00379 }
|
|
||||||||||
|
Move to the first element in the queue. Returns 0 if the queue is empty, else 1.
Definition at line 398 of file Unbounded_Queue.cpp. References current_, and queue_.
|
|
||||||||||
|
Pass back the next_item that hasn't been seen in the queue. Returns 0 when all items have been seen, else 1.
Definition at line 414 of file Unbounded_Queue.cpp. References current_, and queue_. Referenced by ACE_Select_Reactor_Notify::close, ACE_Dev_Poll_Reactor_Notify::close, ACE_ARGV::create_buf_from_queue, ACE_Unbounded_Queue::dump, ACE_Stats::mean, ACE_Service_Config::process_commandline_directives, ACE_Service_Config::process_directives, and ACE_Stats::std_dev.
|
|
|||||
|
Declare the dynamic allocation hooks.
Definition at line 64 of file Unbounded_Queue.h. |
|
|||||
|
Pointer to the current node in the iteration.
Definition at line 68 of file Unbounded_Queue.h. |
|
|||||
|
Pointer to the queue we're iterating over.
Definition at line 71 of file Unbounded_Queue.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002