NED File src/inet/queueing/contract/IPacketPuller.ned
Name | Type | Description |
---|---|---|
IPacketPuller | module interface |
This module interface is implemented by packet pullers. A packet puler connects one input to one output. Packets can be pulled from its output and it pulls packets from its input. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.queueing.contract; // // This module interface is implemented by packet pullers. A packet puler // connects one input to one output. Packets can be pulled from its output // and it pulls packets from its input. // moduleinterface IPacketPuller extends IActivePacketSink, IPassivePacketSource { parameters: @display("i=block/star"); }