Simple Module DropTailQueue

File: Network/Queue/DropTailQueue.ned

C++ definition: click here

Drop-tail queue, to be used in network interfaces. 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.

Parameters:

Name Type Description
frameCapacity numeric const

Gates:

Name Direction Description
in input
out output

Source code:

simple DropTailQueue
    parameters:
        frameCapacity: numeric const;
    gates:
        in: in;
        out: out;
endsimple