IRlcRxEntity.ned
NED File src/simu5g/stack/rlc/IRlcRxEntity.ned
| Name | Type | Description |
|---|---|---|
| IRlcRxEntity | module interface |
Module interface for the receiving side of an RLC entity (TM/UM/AM). Concrete entity types (e.g. RlcTmRxEntity, RlcUmRxEntity, RlcAmRxEntity) implement this interface so that RlcTmEntity/RlcUmEntityBase/RlcAmEntityBase compound modules can instantiate them via a typename parameter. Implementations may declare additional gates (e.g. the AM control gates). |
Source code
// // Simu5G // // Authors: Andras Varga (OpenSim Ltd) // // This file is part of a software released under the license included in file // "license.pdf". Please read LICENSE and README files before using it. // The above files and the present reference are part of the software itself, // and cannot be removed from it. // package simu5g.stack.rlc; // // Module interface for the receiving side of an RLC entity (TM/UM/AM). // Concrete entity types (e.g. RlcTmRxEntity, RlcUmRxEntity, RlcAmRxEntity) implement // this interface so that RlcTmEntity/RlcUmEntityBase/RlcAmEntityBase compound // modules can instantiate them via a typename parameter. Implementations // may declare additional gates (e.g. the AM control gates). // moduleinterface IRlcRxEntity { parameters: @display("i=block/layer"); gates: input in; // PDUs from MAC, via the RlcMux output out; // Reassembled SDUs to the PDCP layer (direct per-DRB connection, not via a mux) }