Package: inet.queueing.sink
FullPacketSink
simple moduleThis module is an active/passive full packet sink. It doesn't pull packets from the connected module, and the it doesn't allow packets to be pusehd by the connected module. The input gate generates backpressure for push packet operations.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
| Name | Type | Description | 
|---|---|---|
| PacketProcessorBase | simple module | 
 This is a base module for various packet processing modules which maintains a few statistics.  | 
   
Parameters
| Name | Type | Default value | Description | 
|---|---|---|---|
| displayStringTextFormat | string | "processed %p pk (%l)" | 
 determines the text that is written on top of the submodule  | 
   
Properties
| Name | Value | Description | 
|---|---|---|
| display | i=block/sink | |
| class | FullPacketSink | 
Gates
| Name | Direction | Size | Description | 
|---|---|---|---|
| in | input | 
Source code
// // This module is an active/passive full packet sink. It doesn't pull packets // from the connected module, and the it doesn't allow packets to be pusehd by // the connected module. The input gate generates backpressure for push packet // operations. // simple FullPacketSink extends PacketProcessorBase like IPacketSink, IActivePacketSink, IPassivePacketSink { parameters: @class(FullPacketSink); @display("i=block/sink"); gates: input in @labels(push,pull); }File: src/inet/queueing/sink/FullPacketSink.ned