Template for the implementation of the LteHandoverManagementSapUser as a member of an owner class of type C to which all methods are forwarded. More...
#include "lte-handover-management-sap.h"
Public Member Functions | |
MemberLteHandoverManagementSapUser ()=delete | |
MemberLteHandoverManagementSapUser (C *owner) | |
Constructor. | |
std::vector< uint8_t > | AddUeMeasReportConfigForHandover (LteRrcSap::ReportConfigEutra reportConfig) override |
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity. | |
void | TriggerHandover (uint16_t rnti, uint16_t targetCellId) override |
Instruct the eNodeB RRC entity to prepare a handover. | |
Public Member Functions inherited from ns3::LteHandoverManagementSapUser | |
virtual | ~LteHandoverManagementSapUser () |
Private Attributes | |
C * | m_owner |
the owner class | |
Template for the implementation of the LteHandoverManagementSapUser as a member of an owner class of type C to which all methods are forwarded.
Definition at line 141 of file lte-handover-management-sap.h.
ns3::MemberLteHandoverManagementSapUser< C >::MemberLteHandoverManagementSapUser | ( | C * | owner | ) |
Constructor.
owner | the owner class |
Definition at line 165 of file lte-handover-management-sap.h.
|
delete |
|
overridevirtual |
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 handover algorithm through the LteHandoverManagementSapProvider::ReportUeMeas SAP function.
Implements ns3::LteHandoverManagementSapUser.
Definition at line 172 of file lte-handover-management-sap.h.
|
overridevirtual |
Instruct the eNodeB RRC entity to prepare a handover.
rnti | Radio Network Temporary Identity, an integer identifying the UE which shall perform the handover |
targetCellId | the cell ID of the target eNodeB |
This function is used by the handover algorithm entity when a handover decision has been reached.
The process to produce the decision is up to the implementation of handover algorithm. It is typically based on the reported UE measurements, which are received through the LteHandoverManagementSapProvider::ReportUeMeas function.
Implements ns3::LteHandoverManagementSapUser.
Definition at line 180 of file lte-handover-management-sap.h.
|
private |
the owner class
Definition at line 160 of file lte-handover-management-sap.h.