IPacketScheduler.ned
NED File src/inet/queueing/contract/IPacketScheduler.ned
| Name | Type | Description |
|---|---|---|
| IPacketScheduler | module interface |
Interface for packet scheduler modules. A packet scheduler is a passive module which has multiple active inputs and one passive output. Packets pulled from the passive output are provided by one of the inputs without any delay and reordering. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.queueing.contract; // // Interface for packet scheduler modules. A packet // scheduler is a passive module which has multiple active inputs and one // passive output. Packets pulled from the passive output are provided by // one of the inputs without any delay and reordering. // moduleinterface IPacketScheduler extends IPassivePacketSource { parameters: @display("i=block/join"); gates: input in[] @labels(pull); }