Platinum UPnP SDK
1.0.5.13
|
The PLT_SsdpListenTask class is used to listen for incoming SSDP packets and keep track of a list of PLT_SsdpPacketListener listeners to notify when a new SSDP packet has arrived. More...
#include <PltSsdp.h>
Public Member Functions | |
void | DoAbort () |
This method to override in derived classes is called when the task is about to stop. More... | |
![]() | |
NPT_Result | Kill () |
When a task is not managed by a PLT_TaskManager, the owner must call this to stop and destroy it. More... | |
Additional Inherited Members | |
![]() | |
virtual void | DoRun () |
This method to override in derived classes is the main task loop. More... | |
![]() | |
PLT_ThreadTask () | |
A PLT_ThreadTask base class is never instantiated directly. More... | |
virtual | ~PLT_ThreadTask () |
The task manager will destroy the task when finished if m_AutoDestroy is true otherwise the owner of this task must use the Kill method. More... | |
virtual void | DoInit () |
This method to override in derived classes is called when the task is about to start. More... | |
virtual bool | IsAborting (NPT_Timeout timeout) |
Return whether this task is in the process of stopping. More... | |
NPT_Result | Start (PLT_TaskManager *task_manager=NULL, NPT_TimeInterval *delay=NULL, bool auto_destroy=true) |
Start a task by associating it with a task manager. More... | |
NPT_Result | Stop (bool blocking=true) |
Stop the task. More... | |
The PLT_SsdpListenTask class is used to listen for incoming SSDP packets and keep track of a list of PLT_SsdpPacketListener listeners to notify when a new SSDP packet has arrived.
|
virtual |
This method to override in derived classes is called when the task is about to stop.
Reimplemented from PLT_HttpServerSocketTask.