Channel DelayChannel

Package: ned
Built-in type

(no description)

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.

Parameters:

Name Type Default value Description
disabled bool false
delay double 0s

propagation delay

Properties:

Name Value Description
class cDelayChannel

Signals:

Name Type Unit
messageSent omnetpp::cMessage
messageDiscarded omnetpp::cMessage

Statistics:

Name Title Source Record Unit Interpolation Mode
messages constant1(messageSent) count? none
messagesDiscarded constant1(messageDiscarded) count? none

Source code:

channel DelayChannel
{
    @class(cDelayChannel);
    @signal[messageSent](type=omnetpp::cMessage);
    @signal[messageDiscarded](type=omnetpp::cMessage);
    @statistic[messages](source="constant1(messageSent)"; record=count?; interpolationmode=none);
    @statistic[messagesDiscarded](source="constant1(messageDiscarded)"; record=count?; interpolationmode=none);
    bool disabled = default(false);
    double delay @unit(s) = default(0s); // propagation delay
}