Public Member Functions |
| SsServiceFlowManager (Ptr< SubscriberStationNetDevice > device) |
| creates a service flow manager and attaches it to a device
|
void | DoDispose (void) |
void | AddServiceFlow (ServiceFlow *serviceFlow) |
| add a service flow to the list
|
void | AddServiceFlow (ServiceFlow serviceFlow) |
| add a service flow to the list
|
void | SetMaxDsaReqRetries (uint8_t maxDsaReqRetries) |
| sets the maximum retries on DSA request message
|
uint8_t | GetMaxDsaReqRetries (void) const |
EventId | GetDsaRspTimeoutEvent (void) const |
EventId | GetDsaAckTimeoutEvent (void) const |
void | InitiateServiceFlows (void) |
DsaReq | CreateDsaReq (const ServiceFlow *serviceFlow) |
Ptr< Packet > | CreateDsaAck (void) |
void | ScheduleDsaReq (const ServiceFlow *serviceFlow) |
void | ProcessDsaRsp (const DsaRsp &dsaRsp) |
ServiceFlow * | GetServiceFlow (uint32_t sfid) const |
ServiceFlow * | GetServiceFlow (Cid cid) const |
std::vector< ServiceFlow * > | GetServiceFlows (enum ServiceFlow::SchedulingType schedulingType) const |
bool | AreServiceFlowsAllocated () |
bool | AreServiceFlowsAllocated (std::vector< ServiceFlow * > *serviceFlows) |
bool | AreServiceFlowsAllocated (std::vector< ServiceFlow * > serviceFlows) |
ServiceFlow * | GetNextServiceFlowToAllocate () |
uint32_t | GetNrServiceFlows (void) const |
ServiceFlow * | DoClassify (Ipv4Address SrcAddress, Ipv4Address DstAddress, uint16_t SrcPort, uint16_t DstPort, uint8_t Proto, ServiceFlow::Direction dir) const |
virtual TypeId | GetInstanceTypeId (void) const |
template<typename T > |
Ptr< T > | GetObject (void) const |
template<typename T > |
Ptr< T > | GetObject (TypeId tid) const |
void | Dispose (void) |
void | AggregateObject (Ptr< Object > other) |
AggregateIterator | GetAggregateIterator (void) const |
void | Start (void) |
| SimpleRefCount (const SimpleRefCount &o) |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
void | Ref (void) const |
void | Unref (void) const |
uint32_t | GetReferenceCount (void) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
void ns3::SsServiceFlowManager::DoDispose |
( |
void |
| ) |
|
|
virtual |
This method is called by Object::Dispose or by the object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overriden version of this method and chain up to their parent's implementation once they are done. i.e., for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose method.
It is safe to call GetObject from within this method.
Reimplemented from ns3::ServiceFlowManager.