class Core::Portable::HTTP::ServerRunLoop::Thread
class Thread: public Core::Threads::Thread { public: // fields ServerRunLoop& server; // construction Thread(ServerRunLoop& server); // methods int threadEntry(); };
Inherited Members
public: // methods virtual int threadEntry() = 0; void start(); void terminate(); bool join(uint32 milliseconds); void setPriority(int priority); void setCPUAffinity(int cpu); int getPriority() const; ThreadID getID() const; CStringPtr getName() const; int getNativePriority() const; int64 getUserModeTime() const; int getErrors() const; Platform::Thread& getPlatformThread(); virtual int threadEntry() = 0;