Simple Module DropTailQueue

Package: inet.networklayer.queue
File: src/networklayer/queue/DropTailQueue.ned

C++ definition

Drop-tail queue, to be used in network interfaces. Conforms to the OutputQueue interface.

DropTailQueue

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Parameters:

Name Type Default value Description
frameCapacity int 100

Properties:

Name Value Description
display i=block/queue

Gates:

Name Direction Size Description
in input
out output

Source code:

//
// Drop-tail queue, to be used in network interfaces.
// Conforms to the OutputQueue interface.
//
simple DropTailQueue like OutputQueue
{
    parameters:
        int frameCapacity = default(100);
        @display("i=block/queue");
    gates:
        input in;
        output out;
}