📄 fullnotequeue.hh
字号:
// -*- c-basic-offset: 4 -*-#ifndef CLICK_FULLNOTEQUEUE_HH#define CLICK_FULLNOTEQUEUE_HH#include "notifierqueue.hh"CLICK_DECLS/*=cQueueQueue(CAPACITY)=s storagestores packets in a FIFO queue=dStores 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.Queue notifies interested parties when it becomes empty and when aformerly-empty queue receives a packet. The empty notification takes placesome time after the queue goes empty, to prevent thrashing for queues thathover around 1 or 2 packets long. This behavior is the same as that ofNotifierQueue. Queue additionally notifies interested parties that it isnon-full, and when a formerly-full queue gains some free space. In allrespects but notification, Queue behaves exactly like SimpleQueue.You may also use the old element name "FullNoteQueue".=h length read-onlyReturns the current number of packets in the queue.=h highwater_length read-onlyReturns the maximum number of packets that have ever been in the queue at once.=h capacity read/writeReturns or sets the queue's capacity.=h drops read-onlyReturns the number of packets dropped by the queue so far.=h reset_counts write-onlyWhen written, resets the C<drops> and C<highwater_length> counters.=h reset write-onlyWhen written, drops all packets in the queue.=a SimpleQueue, MixedQueue, FrontDropQueue */class FullNoteQueue : public NotifierQueue { public: FullNoteQueue(); ~FullNoteQueue(); const char *class_name() const { return "Queue"; } void *cast(const char *); int configure(Vector<String> &conf, ErrorHandler *); void push(int port, Packet *); Packet *pull(int port); private: ActiveNotifier _full_note;};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -