IMeasurementLayer

Package: inet.protocolelement.measurement

IMeasurementLayer

module interface

Module interface for measurement layers that collect performance metrics on packet flows. Implementations monitor and record various statistics about packets passing through the network stack.

Inheritance diagram

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

Implemented by

Name Type Description
MeasurementLayer compound module (no description)
MultiMeasurementLayer compound module (no description)
OmittedMeasurementLayer compound module

Implements the module given interface and can be used as an omitted optional module that removes itself from the module hierarchy during initialization.

Used in compound modules

Name Type Description
LayeredEthernetInterface compound module

Implements an Ethernet network interface.

MyStandardHost compound module (no description)

Properties

Name Value Description
omittedTypename OmittedMeasurementLayer
display i=block/layer

Source code

//
// Module interface for measurement layers that collect performance metrics
// on packet flows. Implementations monitor and record various statistics
// about packets passing through the network stack.
//
moduleinterface IMeasurementLayer
{
    parameters:
        @omittedTypename(OmittedMeasurementLayer);
        @display("i=block/layer");
    gates:
        input upperLayerIn;
        output upperLayerOut;
        input lowerLayerIn;
        output lowerLayerOut;
}

File: src/inet/protocolelement/measurement/IMeasurementLayer.ned