Simple Module Sink

Package: inet.base
File: src/base/Sink.ned

C++ definition: click here

Silently discards all input messages.

Sink

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.

Used in compound modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

ThroughputServer (compound module) (no description)
WirelessAPWithSink (compound module)

Well, it Models a 802.11 Access Point with a Sink.

Properties:

Name Value Description
display i=block/sink

Gates:

Name Direction Size Description
in [ ] input

Source code:

//
// Silently discards all input messages.
//
simple Sink
{
    parameters:
        @display("i=block/sink");
    gates:
        input in[];
}