SatFwdLinkScheduler schedules BB frames for forward link. More...
#include "satellite-fwd-link-scheduler.h"
Public Types | |
| typedef Callback< void, std::vector< Ptr< SatSchedulingObject > > & > | SchedContextCallback |
| Callback to get scheduling contexts from upper layer. | |
| enum | ScheduleSortingCriteria_t { NO_SORT , BUFFERING_DELAY_SORT , BUFFERING_LOAD_SORT , RANDOM_SORT , PRIORITY_SORT } |
| Types for sorting algorithm used by forward link scheduler. More... | |
| typedef Callback< bool, Ptr< SatControlMessage >, const Address & > | SendControlMsgCallback |
| Callback to notify upper layer about Tx opportunity. | |
| typedef Callback< Ptr< Packet >, uint32_t, Mac48Address, uint8_t, uint32_t &, uint32_t & > | TxOpportunityCallback |
| Callback to notify upper layer about Tx opportunity. | |
Public Member Functions | |
| SatFwdLinkScheduler () | |
| Construct a SatFwdLinkScheduler. | |
| SatFwdLinkScheduler (Ptr< SatBbFrameConf > conf, Mac48Address address, double carrierBandwidthInHz) | |
| Actual constructor of a SatFwdLinkScheduler. | |
| ~SatFwdLinkScheduler () | |
| Destroy a SatFwdLinkScheduler. | |
| virtual void | ClearAllPackets () |
| Remove all packets being treated. | |
| void | CnoInfoUpdated (Mac48Address utAddress, double cnoEstimate) |
| Called when UT's C/N0 estimation is updated. | |
| Time | GetDefaultFrameDuration () const |
| Return the BB frame duration of the default frame format, i.e. | |
| virtual std::pair< Ptr< SatBbFrame >, const Time > | GetNextFrame () |
| Get next frame to be transmitted. | |
| virtual void | NotifyConstructionCompleted () override |
| Notifier called once the ObjectBase is fully constructed. | |
| bool | SendControlMsg (Ptr< SatControlMessage > message, const Address &dest) const |
| Method te send a control message to a destination. | |
| void | SetDummyFrameSendingEnabled (bool dummyFrameSendingEnabled) |
| Set the value of m_dummyFrameSendingEnabled. | |
| void | SetSchedContextCallback (SatFwdLinkScheduler::SchedContextCallback cb) |
| Method to set Tx opportunity callback. | |
| void | SetSendControlMsgCallback (SatFwdLinkScheduler::SendControlMsgCallback cb) |
| Method to set the control message sender callback. | |
| void | SetTxOpportunityCallback (SatFwdLinkScheduler::TxOpportunityCallback cb) |
| Method to set Tx opportunity callback. | |
Static Public Member Functions | |
| static bool | CompareSoFlowId (Ptr< SatSchedulingObject > obj1, Ptr< SatSchedulingObject > obj2) |
| Compares to scheduling objects priorities. | |
| static bool | CompareSoPriorityHol (Ptr< SatSchedulingObject > obj1, Ptr< SatSchedulingObject > obj2) |
| Compares to scheduling objects priorities and HOL. | |
| static bool | CompareSoPriorityLoad (Ptr< SatSchedulingObject > obj1, Ptr< SatSchedulingObject > obj2) |
| Compares to scheduling objects priorities and load. | |
| static TypeId | GetTypeId (void) |
| Get the type ID. | |
Protected Types | |
| typedef std::map< Mac48Address, Ptr< SatCnoEstimator > > | CnoEstimatorMap_t |
Protected Member Functions | |
| SatFwdLinkScheduler (const SatFwdLinkScheduler &) | |
| bool | CnoMatchWithFrame (double cno, Ptr< SatBbFrame > frame) const |
| Check if given estimated C/N0 match with given frame. | |
| Ptr< SatCnoEstimator > | CreateCnoEstimator () |
| Create estimator for the UT according to set attributes. | |
| void | DoDispose (void) |
| Do dispose actions. | |
| double | GetSchedulingObjectCno (Ptr< SatSchedulingObject > ob) |
| void | GetSchedulingObjects (std::vector< Ptr< SatSchedulingObject > > &output) |
| Gets scheduling object in sorted order according to configured sorting criteria. | |
| SatFwdLinkScheduler & | operator= (const SatFwdLinkScheduler &) |
| void | PeriodicTimerExpired () |
| Handles periodic timer timeouts. | |
| virtual void | ScheduleBbFrames ()=0 |
| Schedule BB Frames. | |
| virtual void | SendAndClearSymbolsSentStat ()=0 |
| Send stats and reset all the symbols sent count for each slice to zero. | |
| void | SortSchedulingObjects (std::vector< Ptr< SatSchedulingObject > > &so) |
| Sorts given scheduling objects according to configured sorting criteria. | |
Protected Attributes | |
| ScheduleSortingCriteria_t | m_additionalSortCriteria |
| Additional sorting criteria for scheduling objects received from LLC. | |
| Ptr< SatBbFrameConf > | m_bbFrameConf |
| Configured BB Frame conf. | |
| double | m_carrierBandwidthInHz |
| Carrier bandwidth in hertz where scheduler is associated to. | |
| Time | m_cnoEstimationWindow |
| Time window for C/N0 estimation. | |
| CnoEstimatorMap_t | m_cnoEstimatorContainer |
| C/N0 estimator per UT. | |
| SatCnoEstimator::EstimationMode_t | m_cnoEstimatorMode |
| Mode used for C/N0 estimator. | |
| bool | m_dummyFrameSendingEnabled |
| Flag indicating if Dummy Frames are sent or not. | |
| Mac48Address | m_macAddress |
| MAC address of the this instance (node). | |
| Time | m_periodicInterval |
| The interval for periodic scheduling timer. | |
| Ptr< UniformRandomVariable > | m_random |
| Random variable used in FWD link scheduling. | |
| SatFwdLinkScheduler::SchedContextCallback | m_schedContextCallback |
| The scheduling context getter callback. | |
| TracedCallback< uint8_t, double > | m_schedulingSymbolRateTrace |
| Traced callback for symbol rate, with flowId, requested Modcod info. | |
| SatFwdLinkScheduler::SendControlMsgCallback | m_sendControlMsgCallback |
| The control message sender callback. | |
| SatFwdLinkScheduler::TxOpportunityCallback | m_txOpportunityCallback |
| Callback to notify the txOpportunity to upper layer Returns a packet Attributes: payload in bytes. | |
SatFwdLinkScheduler schedules BB frames for forward link.
In every GW MAC is assigned own instance of the SatFwdLinkScheduler. To handle BB frames and maintain queues for the them, it utilizes BB frame container given as attribute.
SatFwdLinkScheduler communicated through callback functions to request scheduling objects and notifying TX opportunities.
GW MAC requests frames from scheduler through method GetNextFrame.
Definition at line 68 of file satellite-fwd-link-scheduler.h.
|
protected |
Definition at line 243 of file satellite-fwd-link-scheduler.h.
| typedef Callback<void, std::vector<Ptr<SatSchedulingObject> >&> ns3::SatFwdLinkScheduler::SchedContextCallback |
Callback to get scheduling contexts from upper layer.
| vector | of scheduling contexts |
Definition at line 166 of file satellite-fwd-link-scheduler.h.
| typedef Callback<bool, Ptr<SatControlMessage>, const Address&> ns3::SatFwdLinkScheduler::SendControlMsgCallback |
Callback to notify upper layer about Tx opportunity.
| Ptr<SatControlMessage> | The control message to send. |
| Address& | the destination MAC address. |
Definition at line 186 of file satellite-fwd-link-scheduler.h.
| typedef Callback<Ptr<Packet>, uint32_t, Mac48Address, uint8_t, uint32_t&, uint32_t&> ns3::SatFwdLinkScheduler::TxOpportunityCallback |
Callback to notify upper layer about Tx opportunity.
| Mac48Address | address |
| uint32_t | payload size in bytes |
| uint8_t | Flow identifier |
| uint32_t& | Bytes left |
| uint32_t& | Next min TxO |
Definition at line 178 of file satellite-fwd-link-scheduler.h.
Types for sorting algorithm used by forward link scheduler.
| Enumerator | |
|---|---|
| NO_SORT | NO_SORT. |
| BUFFERING_DELAY_SORT | BUFFERING_DELAY_SORT. |
| BUFFERING_LOAD_SORT | BUFFERING_LOAD_SORT. |
| RANDOM_SORT | RANDOM_SORT. |
| PRIORITY_SORT | PRIORITY_SORT. |
Definition at line 74 of file satellite-fwd-link-scheduler.h.
| ns3::SatFwdLinkScheduler::SatFwdLinkScheduler | ( | ) |
Construct a SatFwdLinkScheduler.
This the default constructor for the SatFwdLinkScheduler is not supported.
Definition at line 164 of file satellite-fwd-link-scheduler.cc.
References SatFwdLinkScheduler(), m_additionalSortCriteria, m_carrierBandwidthInHz, m_cnoEstimatorMode, and NO_SORT.
Referenced by SatFwdLinkScheduler(), SatFwdLinkScheduler(), SatFwdLinkScheduler(), ns3::SatFwdLinkSchedulerDefault::SatFwdLinkSchedulerDefault(), ns3::SatFwdLinkSchedulerDefault::SatFwdLinkSchedulerDefault(), ns3::SatFwdLinkSchedulerTimeSlicing::SatFwdLinkSchedulerTimeSlicing(), ns3::SatFwdLinkSchedulerTimeSlicing::SatFwdLinkSchedulerTimeSlicing(), ns3::SatScpcScheduler::SatScpcScheduler(), ns3::SatScpcScheduler::SatScpcScheduler(), ns3::SatFwdLinkSchedulerDefault::GetTypeId(), ns3::SatFwdLinkSchedulerTimeSlicing::GetTypeId(), ns3::SatScpcScheduler::GetTypeId(), and operator=().
| ns3::SatFwdLinkScheduler::SatFwdLinkScheduler | ( | Ptr< SatBbFrameConf > | conf, |
| Mac48Address | address, | ||
| double | carrierBandwidthInHz ) |
Actual constructor of a SatFwdLinkScheduler.
| conf | BB Frame configuration |
| address | MAC address |
| carrierBandwidthInHz | Carrier bandwidth where scheduler is associated to [Hz]. |
Definition at line 173 of file satellite-fwd-link-scheduler.cc.
References SatFwdLinkScheduler(), m_additionalSortCriteria, m_bbFrameConf, m_carrierBandwidthInHz, m_cnoEstimatorMode, m_macAddress, m_random, and NO_SORT.
| ns3::SatFwdLinkScheduler::~SatFwdLinkScheduler | ( | ) |
Destroy a SatFwdLinkScheduler.
This is the destructor for the SatFwdLinkScheduler.
Definition at line 198 of file satellite-fwd-link-scheduler.cc.
|
protected |
|
virtual |
Remove all packets being treated.
Reimplemented in ns3::SatFwdLinkSchedulerDefault, and ns3::SatFwdLinkSchedulerTimeSlicing.
Definition at line 291 of file satellite-fwd-link-scheduler.cc.
| void ns3::SatFwdLinkScheduler::CnoInfoUpdated | ( | Mac48Address | utAddress, |
| double | cnoEstimate ) |
Called when UT's C/N0 estimation is updated.
| utAddress | Address of the UT updated C/N0 info. |
| cnoEstimate | Value of the estimated C/N0. |
Definition at line 252 of file satellite-fwd-link-scheduler.cc.
References CreateCnoEstimator(), and m_cnoEstimatorContainer.
|
protected |
Check if given estimated C/N0 match with given frame.
| cno | Estimated C/N0 value. |
| frame | Frame to match |
Definition at line 353 of file satellite-fwd-link-scheduler.cc.
References m_bbFrameConf.
|
static |
Compares to scheduling objects priorities.
| obj1 | First object to compare |
| obj2 | Second object to compare |
Definition at line 73 of file satellite-fwd-link-scheduler.cc.
Referenced by CompareSoPriorityHol(), CompareSoPriorityLoad(), and SortSchedulingObjects().
|
static |
Compares to scheduling objects priorities and HOL.
| obj1 | First object to compare |
| obj2 | Second object to compare |
Definition at line 93 of file satellite-fwd-link-scheduler.cc.
References CompareSoFlowId().
Referenced by SortSchedulingObjects().
|
static |
Compares to scheduling objects priorities and load.
| obj1 | First object to compare |
| obj2 | Second object to compare |
Definition at line 79 of file satellite-fwd-link-scheduler.cc.
References CompareSoFlowId().
Referenced by SortSchedulingObjects().
|
protected |
Create estimator for the UT according to set attributes.
Definition at line 387 of file satellite-fwd-link-scheduler.cc.
References ns3::SatCnoEstimator::AVERAGE, ns3::SatCnoEstimator::LAST, m_cnoEstimationWindow, m_cnoEstimatorMode, and ns3::SatCnoEstimator::MINIMUM.
Referenced by CnoInfoUpdated().
|
protected |
Do dispose actions.
Definition at line 204 of file satellite-fwd-link-scheduler.cc.
References m_cnoEstimatorContainer, m_schedContextCallback, m_sendControlMsgCallback, and m_txOpportunityCallback.
Referenced by ns3::SatFwdLinkSchedulerDefault::DoDispose(), ns3::SatFwdLinkSchedulerTimeSlicing::DoDispose(), and ns3::SatScpcScheduler::DoDispose().
| Time ns3::SatFwdLinkScheduler::GetDefaultFrameDuration | ( | ) | const |
Return the BB frame duration of the default frame format, i.e.
default MODCOD and NORMAL frame type. This is used by the GW MAC to schedule next txop events if it is disabled.
Definition at line 276 of file satellite-fwd-link-scheduler.cc.
References m_bbFrameConf, and ns3::SatEnums::NORMAL_FRAME.
|
virtual |
Get next frame to be transmitted.
Reimplemented in ns3::SatFwdLinkSchedulerDefault, ns3::SatFwdLinkSchedulerTimeSlicing, and ns3::SatScpcScheduler.
Definition at line 242 of file satellite-fwd-link-scheduler.cc.
References m_bbFrameConf.
|
protected |
| Scheduling | object |
Definition at line 370 of file satellite-fwd-link-scheduler.cc.
References m_cnoEstimatorContainer.
Referenced by ns3::SatFwdLinkSchedulerDefault::ScheduleBbFrames(), ns3::SatFwdLinkSchedulerTimeSlicing::ScheduleBbFrames(), and ns3::SatScpcScheduler::ScheduleBbFrames().
|
protected |
Gets scheduling object in sorted order according to configured sorting criteria.
| output | reference to a vector which will be filled with pointers to the scheduling objects available for scheduling. |
Definition at line 310 of file satellite-fwd-link-scheduler.cc.
|
static |
Get the type ID.
Definition at line 107 of file satellite-fwd-link-scheduler.cc.
References ns3::SatCnoEstimator::AVERAGE, BUFFERING_DELAY_SORT, BUFFERING_LOAD_SORT, ns3::SatCnoEstimator::LAST, m_additionalSortCriteria, m_bbFrameConf, m_cnoEstimationWindow, m_cnoEstimatorMode, m_dummyFrameSendingEnabled, m_periodicInterval, m_schedulingSymbolRateTrace, ns3::SatCnoEstimator::MINIMUM, and NO_SORT.
|
overridevirtual |
Notifier called once the ObjectBase is fully constructed.
This method is invoked once all member attributes have been initialized. Subclasses can override this method to be notified of this event but if they do this, they must chain up to their parent's NotifyConstructionCompleted method.
Reimplemented in ns3::SatFwdLinkSchedulerDefault, ns3::SatFwdLinkSchedulerTimeSlicing, and ns3::SatScpcScheduler.
Definition at line 189 of file satellite-fwd-link-scheduler.cc.
References m_periodicInterval, and PeriodicTimerExpired().
Referenced by ns3::SatFwdLinkSchedulerDefault::NotifyConstructionCompleted(), ns3::SatFwdLinkSchedulerTimeSlicing::NotifyConstructionCompleted(), and ns3::SatScpcScheduler::NotifyConstructionCompleted().
|
protected |
|
protected |
Handles periodic timer timeouts.
Definition at line 299 of file satellite-fwd-link-scheduler.cc.
References m_periodicInterval, PeriodicTimerExpired(), ScheduleBbFrames(), and SendAndClearSymbolsSentStat().
Referenced by NotifyConstructionCompleted(), and PeriodicTimerExpired().
|
protectedpure virtual |
Schedule BB Frames.
Implemented in ns3::SatFwdLinkSchedulerDefault, ns3::SatFwdLinkSchedulerTimeSlicing, and ns3::SatScpcScheduler.
Referenced by PeriodicTimerExpired().
|
protectedpure virtual |
Send stats and reset all the symbols sent count for each slice to zero.
Implemented in ns3::SatFwdLinkSchedulerDefault, ns3::SatFwdLinkSchedulerTimeSlicing, and ns3::SatScpcScheduler.
Referenced by PeriodicTimerExpired().
| bool ns3::SatFwdLinkScheduler::SendControlMsg | ( | Ptr< SatControlMessage > | message, |
| const Address & | dest ) const |
Method te send a control message to a destination.
| message | The control message to send |
| dest | The destination mac address |
Definition at line 235 of file satellite-fwd-link-scheduler.cc.
References m_sendControlMsgCallback.
| void ns3::SatFwdLinkScheduler::SetDummyFrameSendingEnabled | ( | bool | dummyFrameSendingEnabled | ) |
Set the value of m_dummyFrameSendingEnabled.
Definition at line 285 of file satellite-fwd-link-scheduler.cc.
References m_dummyFrameSendingEnabled.
| void ns3::SatFwdLinkScheduler::SetSchedContextCallback | ( | SatFwdLinkScheduler::SchedContextCallback | cb | ) |
Method to set Tx opportunity callback.
| cb | callback to invoke whenever a packet has been received and must be forwarded to the higher layers. |
Definition at line 214 of file satellite-fwd-link-scheduler.cc.
References m_schedContextCallback.
| void ns3::SatFwdLinkScheduler::SetSendControlMsgCallback | ( | SatFwdLinkScheduler::SendControlMsgCallback | cb | ) |
Method to set the control message sender callback.
| cb | callback to invoke whenever a control packet has to be sent. |
Definition at line 228 of file satellite-fwd-link-scheduler.cc.
References m_sendControlMsgCallback.
| void ns3::SatFwdLinkScheduler::SetTxOpportunityCallback | ( | SatFwdLinkScheduler::TxOpportunityCallback | cb | ) |
Method to set Tx opportunity callback.
| cb | callback to invoke whenever a packet has been received and must be forwarded to the higher layers. |
Definition at line 221 of file satellite-fwd-link-scheduler.cc.
References m_txOpportunityCallback.
|
protected |
Sorts given scheduling objects according to configured sorting criteria.
| so | Scheduling objects to sort. |
Definition at line 316 of file satellite-fwd-link-scheduler.cc.
References BUFFERING_DELAY_SORT, BUFFERING_LOAD_SORT, CompareSoFlowId(), CompareSoPriorityHol(), CompareSoPriorityLoad(), m_additionalSortCriteria, and NO_SORT.
Referenced by ns3::SatFwdLinkSchedulerDefault::GetSchedulingObjects(), ns3::SatFwdLinkSchedulerTimeSlicing::GetSchedulingObjects(), and ns3::SatScpcScheduler::GetSchedulingObjects().
|
protected |
Additional sorting criteria for scheduling objects received from LLC.
Definition at line 335 of file satellite-fwd-link-scheduler.h.
Referenced by SatFwdLinkScheduler(), SatFwdLinkScheduler(), GetTypeId(), and SortSchedulingObjects().
|
protected |
Configured BB Frame conf.
Definition at line 330 of file satellite-fwd-link-scheduler.h.
Referenced by SatFwdLinkScheduler(), CnoMatchWithFrame(), GetDefaultFrameDuration(), GetNextFrame(), ns3::SatFwdLinkSchedulerDefault::GetNextFrame(), ns3::SatFwdLinkSchedulerTimeSlicing::GetNextFrame(), ns3::SatScpcScheduler::GetNextFrame(), GetTypeId(), ns3::SatFwdLinkSchedulerDefault::NotifyConstructionCompleted(), ns3::SatFwdLinkSchedulerTimeSlicing::NotifyConstructionCompleted(), ns3::SatScpcScheduler::NotifyConstructionCompleted(), ns3::SatFwdLinkSchedulerDefault::ScheduleBbFrames(), ns3::SatFwdLinkSchedulerTimeSlicing::ScheduleBbFrames(), and ns3::SatScpcScheduler::ScheduleBbFrames().
|
protected |
Carrier bandwidth in hertz where scheduler is associated to.
Definition at line 372 of file satellite-fwd-link-scheduler.h.
Referenced by SatFwdLinkScheduler(), SatFwdLinkScheduler(), ns3::SatFwdLinkSchedulerDefault::GetNextFrame(), ns3::SatFwdLinkSchedulerTimeSlicing::GetNextFrame(), ns3::SatScpcScheduler::GetNextFrame(), ns3::SatFwdLinkSchedulerTimeSlicing::GetSymbols(), ns3::SatFwdLinkSchedulerTimeSlicing::NotifyConstructionCompleted(), ns3::SatFwdLinkSchedulerDefault::ScheduleBbFrames(), ns3::SatFwdLinkSchedulerTimeSlicing::ScheduleBbFrames(), and ns3::SatScpcScheduler::ScheduleBbFrames().
|
protected |
Time window for C/N0 estimation.
Definition at line 367 of file satellite-fwd-link-scheduler.h.
Referenced by CreateCnoEstimator(), and GetTypeId().
|
protected |
C/N0 estimator per UT.
Definition at line 357 of file satellite-fwd-link-scheduler.h.
Referenced by CnoInfoUpdated(), DoDispose(), and GetSchedulingObjectCno().
|
protected |
Mode used for C/N0 estimator.
Definition at line 362 of file satellite-fwd-link-scheduler.h.
Referenced by SatFwdLinkScheduler(), SatFwdLinkScheduler(), CreateCnoEstimator(), and GetTypeId().
|
protected |
Flag indicating if Dummy Frames are sent or not.
false means that only transmission time is simulated without sending.
Definition at line 314 of file satellite-fwd-link-scheduler.h.
Referenced by ns3::SatFwdLinkSchedulerDefault::GetNextFrame(), ns3::SatFwdLinkSchedulerTimeSlicing::GetNextFrame(), ns3::SatScpcScheduler::GetNextFrame(), GetTypeId(), and SetDummyFrameSendingEnabled().
|
protected |
MAC address of the this instance (node).
Definition at line 308 of file satellite-fwd-link-scheduler.h.
Referenced by SatFwdLinkScheduler(), ns3::SatFwdLinkSchedulerDefault::GetNextFrame(), ns3::SatFwdLinkSchedulerTimeSlicing::GetNextFrame(), and ns3::SatScpcScheduler::GetNextFrame().
|
protected |
The interval for periodic scheduling timer.
Timer is evaluated by scheduling calls to PeriodicTimerExpired.
Definition at line 325 of file satellite-fwd-link-scheduler.h.
Referenced by ns3::SatFwdLinkSchedulerTimeSlicing::CanOpenBbFrame(), ns3::SatFwdLinkSchedulerTimeSlicing::GetNextFrame(), ns3::SatFwdLinkSchedulerTimeSlicing::GetSchedulingObjects(), GetTypeId(), NotifyConstructionCompleted(), ns3::SatFwdLinkSchedulerTimeSlicing::NotifyConstructionCompleted(), PeriodicTimerExpired(), and ns3::SatFwdLinkSchedulerTimeSlicing::ScheduleBbFrames().
|
protected |
Random variable used in FWD link scheduling.
Definition at line 319 of file satellite-fwd-link-scheduler.h.
Referenced by SatFwdLinkScheduler().
|
protected |
The scheduling context getter callback.
Definition at line 347 of file satellite-fwd-link-scheduler.h.
Referenced by DoDispose(), ns3::SatFwdLinkSchedulerDefault::GetSchedulingObjects(), ns3::SatFwdLinkSchedulerTimeSlicing::GetSchedulingObjects(), ns3::SatScpcScheduler::GetSchedulingObjects(), and SetSchedContextCallback().
|
protected |
Traced callback for symbol rate, with flowId, requested Modcod info.
Definition at line 377 of file satellite-fwd-link-scheduler.h.
Referenced by GetTypeId(), ns3::SatFwdLinkSchedulerDefault::SendAndClearSymbolsSentStat(), ns3::SatFwdLinkSchedulerTimeSlicing::SendAndClearSymbolsSentStat(), and ns3::SatScpcScheduler::SendAndClearSymbolsSentStat().
|
protected |
The control message sender callback.
Definition at line 352 of file satellite-fwd-link-scheduler.h.
Referenced by DoDispose(), SendControlMsg(), ns3::SatFwdLinkSchedulerTimeSlicing::SendTimeSliceSubscription(), and SetSendControlMsgCallback().
|
protected |
Callback to notify the txOpportunity to upper layer Returns a packet Attributes: payload in bytes.
Definition at line 342 of file satellite-fwd-link-scheduler.h.
Referenced by DoDispose(), ns3::SatFwdLinkSchedulerDefault::ScheduleBbFrames(), ns3::SatFwdLinkSchedulerTimeSlicing::ScheduleBbFrames(), ns3::SatScpcScheduler::ScheduleBbFrames(), and SetTxOpportunityCallback().