BackPressureBasedFilter.ned
NED File src/inet/queueing/filter/BackPressureBasedFilter.ned
| Name | Type | Description |
|---|---|---|
| BackPressureBasedFilter | simple module |
Implements a packet filter that drops packets when the following module (consumer) does not allow packets to be pushed. The module itself accepts all packets (i.e. canPushPacket() and canPushSomePacket() always return true). This is useful, for example, when the following module is a gate to filter out packets when the gate is closed. |
Source code
// // Copyright (C) 2024 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.queueing.filter; import inet.queueing.base.PacketFilterBase; import inet.queueing.contract.IPacketFilter; // // Implements a packet filter that drops packets when the following module (consumer) // does not allow packets to be pushed. The module itself accepts all packets (i.e. `canPushPacket()` // and `canPushSomePacket()` always return true). This is useful, for example, when the following // module is a gate to filter out packets when the gate is closed. // simple BackPressureBasedFilter extends PacketFilterBase like IPacketFilter { parameters: @class(BackPressureBasedFilter); }