Package: inet.queueing.contract
IPacketDelayer
module interfaceThis module interface is implemented by packet delayers.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Implemented by
Name | Type | Description |
---|---|---|
EthernetCutthroughBarrier | simple module | (no description) |
OmittedPacketDelayer | compound module |
This module implements the module given interface and can be used as an omitted optional module that removes itself from the module hierarchy during initialize. |
PacketDelayer | simple module |
This module connects one packet producer to one packet consumer. It can be pushed with packets from the connected packet producer. When this happens, the packet is delayed and eventually pushed to the output. Note that the order of packets may change if the delay parameter is configured to be a distribution. |
QueueingPacketDelayer | compound module | (no description) |
Used in compound modules
Name | Type | Description |
---|---|---|
DirectionReverserLayer | compound module |
This module provides a layer that combines the decision for local delivery with the service of reversing the direction of an incoming packet to outgoing for packet forwarding. |
ProcessingDelayLayer | compound module | (no description) |
Extends
Name | Type | Description |
---|---|---|
IActivePacketSource | module interface |
This module interface must be implemented by active packet source modules. An active packet source, also called a producer, has one output that must be connected to a passive packet sink module. The active packet source is expected to push packets into the connected passive packet sink over time. |
IPassivePacketSink | module interface |
This module interface must be implemented by passive packet sink modules. A passive packet sink, also called a consumer, has one input that must be connected to an active packet source module. The connected active packet source is expected to push packets into the passive packet sink over time. |
Properties
Name | Value | Description |
---|---|---|
display | i=block/sink | |
omittedTypename | OmittedPacketDelayer |
Source code
// // This module interface is implemented by packet delayers. // moduleinterface IPacketDelayer extends IPassivePacketSink, IActivePacketSource { parameters: @omittedTypename(OmittedPacketDelayer); @display("i=block/delay"); }File: src/inet/queueing/contract/IPacketDelayer.ned