IProcessingDelayLayer

Package: inet.protocolelement.processing

IProcessingDelayLayer

module interface

Module interface for processing delay layers that model packet processing time in network devices. Implementations simulate the delay introduced by packet processing operations in both ingress and egress directions.

Inheritance diagram

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

Implemented by

Name Type Description
OmittedProcessingDelayLayer 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.

ProcessingDelayLayer compound module (no description)

Used in compound modules

Name Type Description
BridgingLayer compound module

Provides various layer 2 services such as packet forwarding, interface selection, virtual LAN handling, stream handling.

LayeredEthernetInterface compound module

Implements an Ethernet network interface.

Properties

Name Value Description
omittedTypename OmittedProcessingDelayLayer
display i=block/layer

Source code

//
// Module interface for processing delay layers that model packet processing
// time in network devices. Implementations simulate the delay introduced by
// packet processing operations in both ingress and egress directions.
//
moduleinterface IProcessingDelayLayer
{
    parameters:
        @omittedTypename(OmittedProcessingDelayLayer);
        @display("i=block/layer");
    gates:
        input upperLayerIn;
        output upperLayerOut;
        input lowerLayerIn;
        output lowerLayerOut;
}

File: src/inet/protocolelement/processing/IProcessingDelayLayer.ned