Compound Module Nop

Package: inet.common.queue
File: src/inet/common/queue/Nop.ned

Just lets messages through without any change or delay.

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Properties:

Name Value Description
display i=block/socket;is=vs

Gates:

Name Direction Size Description
in input
out output

Source code:

//
// Just lets messages through without any change or delay.
//
module Nop like IHook
{
    @display("i=block/socket;is=vs");
    gates:
        input in;
        output out;
    connections:
        in --> out;
}