OmittedPacketDelayer.ned
NED File src/inet/queueing/common/OmittedPacketDelayer.ned
| Name | Type | Description |
|---|---|---|
| OmittedPacketDelayer | compound module |
Implements the given module interface and can be used as an optional module that removes itself from the module hierarchy during initialization. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.queueing.common; import inet.common.Module; import inet.queueing.contract.IPacketDelayer; // // Implements the given module interface and can be used as an optional // module that removes itself from the module hierarchy during initialization. // module OmittedPacketDelayer extends Module like IPacketDelayer { parameters: @class(::inet::OmittedModule); @display("i=block/delay,black,50"); gates: input in; output out; connections: in --> out; }