Service Access Point (SAP) offered by the eNodeB RRC instance to the component carrier manager (CCM) instance. More...
#include "lte-ccm-rrc-sap.h"
Public Member Functions | |
virtual | ~LteCcmRrcSapUser () |
virtual void | AddLcs (std::vector< LteEnbRrcSapProvider::LogicalChannelConfig > lcConfig)=0 |
add a new Logical Channel (LC) More... | |
virtual uint8_t | AddUeMeasReportConfigForComponentCarrier (LteRrcSap::ReportConfigEutra reportConfig)=0 |
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity. More... | |
virtual Ptr< UeManager > | GetUeManager (uint16_t rnti)=0 |
Get UE manager by RNTI. More... | |
virtual void | ReleaseLcs (uint16_t rnti, uint8_t lcid)=0 |
remove an existing LC More... | |
virtual void | SetNumberOfComponentCarriers (uint16_t noOfComponentCarriers)=0 |
Set the number of component carriers. More... | |
virtual void | TriggerComponentCarrier (uint16_t rnti, uint16_t targetCellId)=0 |
Instruct the eNodeB RRC entity to prepare a component carrier. More... | |
Friends | |
class | LteEnbRrc |
allow LteEnbRrc class friend access More... | |
Service Access Point (SAP) offered by the eNodeB RRC instance to the component carrier manager (CCM) instance.
This is the Component Carrier Management SAP User, i.e., the part of the SAP that contains the eNodeB RRC methods called by the CCM.
Definition at line 155 of file lte-ccm-rrc-sap.h.
|
virtual |
Definition at line 30 of file lte-ccm-rrc-sap.cc.
|
pure virtual |
add a new Logical Channel (LC)
lcConfig | is a single structure contains logical Channel Id, Logical Channel config and Component Carrier Id |
Implemented in ns3::MemberLteCcmRrcSapUser< C >.
|
pure virtual |
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity.
reportConfig | the UE measurement reporting configuration |
The eNodeB RRC entity is expected to configure the same reporting configuration in each of the attached UEs. When later in the simulation a UE measurement report is received from a UE as a result of this configuration, the eNodeB RRC entity shall forward this report to the ComponentCarrier algorithm through the LteCcmRrcSapProvider::ReportUeMeas SAP function.
Implemented in ns3::MemberLteCcmRrcSapUser< C >.
Get UE manager by RNTI.
rnti | RNTI |
Implemented in ns3::MemberLteCcmRrcSapUser< C >.
Referenced by ns3::NoOpComponentCarrierManager::DoReportBufferStatus(), ns3::RrComponentCarrierManager::DoReportBufferStatus(), and ns3::RrComponentCarrierManager::DoUlReceiveMacCe().
|
pure virtual |
|
pure virtual |
Set the number of component carriers.
noOfComponentCarriers | The number of component carriers |
Implemented in ns3::MemberLteCcmRrcSapUser< C >.
Referenced by ns3::LteEnbComponentCarrierManager::SetNumberOfComponentCarriers().
|
pure virtual |
Instruct the eNodeB RRC entity to prepare a component carrier.
rnti | Radio Network Temporary Identity, an integer identifying the UE which shall perform the ComponentCarrier |
targetCellId | the cell ID of the target eNodeB |
This function is used by the ComponentCarrier manager when a decision on component carriers configurations.
The process to produce the decision is up to the implementation of ComponentCarrier algorithm. It is typically based on the reported UE measurements, which are received through the LteCcmRrcSapProvider::ReportUeMeas function.
Implemented in ns3::MemberLteCcmRrcSapUser< C >.
|
friend |
allow LteEnbRrc class friend access
Definition at line 158 of file lte-ccm-rrc-sap.h.