This is automatically generated documentation. Edit after the "COMMENTS" heading; changes to the main body will be lost.
SimpleQueue -- Click element; stores packets in a FIFO queue
SimpleQueue
SimpleQueue(CAPACITY)
Ports: 1 input, 1-2 outputs
Package: standard (core)
Stores incoming packets in a first-in-first-out queue. Drops incoming packets if the queue already holds CAPACITY packets. The default for CAPACITY is 1000. Multithreaded Click note: SimpleQueue is designed to be used in an environment with at most one concurrent pusher and at most one concurrent puller. Thus, at most one thread pushes to the SimpleQueue at a time and at most one thread pulls from the SimpleQueue at a time. Different threads can push to and pull from the SimpleQueue concurrently, however. See ThreadSafeQueue for a queue that can support multiple concurrent pushers and pullers.
The Queue and NotifierQueue elements act like SimpleQueue, but additionally notify interested parties when they change state (from nonempty to empty or vice versa, and/or from nonfull to full or vice versa).
drops and highwater_length counters.Queue, NotifierQueue, MixedQueue, RED, FrontDropQueue, ThreadSafeQueue
Generated by 'click-elem2man' from '../elements/standard/simplequeue.hh' on 7/Mar/2009.