NED File src/inet/queueing/queue/OmittedPacketQueue.ned
Name | Type | Description |
---|---|---|
OmittedPacketQueue | 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. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.queueing.queue; import inet.queueing.contract.IPacketQueue; // // 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. // module OmittedPacketQueue like IPacketQueue { parameters: @class(::inet::OmittedModule); @display("i=block/queue,black,50"); gates: input in; output out; connections: in --> out; }