Simple Module DropTailQoSQueue

File: Network/Queue/DropTailQoSQueue.ned

C++ definition: click here

Drop-tail queue with QoS support, to be used in network interfaces. Performs priority queueing. Conforms to the OutputQueue interface.

Usage diagram:

The following diagram shows usage relationships between modules, networks and channels. Unresolved module (and channel) types are missing from the diagram. Click here to see the full picture.

DropTailQoSQueue

Parameters:

Name Type Description
frameCapacity numeric const

per-subqueue capacity

classifierClass string

class that inherits from IQoSClassifier

Gates:

Name Direction Description
in input
out output

Source code:

simple DropTailQoSQueue
    parameters:
        frameCapacity: numeric const,  // per-subqueue capacity
        classifierClass: string;  // class that inherits from IQoSClassifier
    gates:
        in: in;
        out: out;
endsimple