#include <Distributable_Thread.h>
Public Member Functions | |
TAO_DistributableThread (void) | |
~TAO_DistributableThread (void) | |
virtual void | cancel (void) |
virtual RTScheduling::DistributableThread::DT_State | state (void) |
Private Attributes | |
RTScheduling::DistributableThread::DT_State | state_ |
Definition at line 13 of file Distributable_Thread.h.
TAO_DistributableThread::TAO_DistributableThread | ( | void | ) |
Definition at line 8 of file Distributable_Thread.cpp.
:state_ (RTScheduling::DistributableThread::ACTIVE) { }
TAO_DistributableThread::~TAO_DistributableThread | ( | void | ) |
Definition at line 13 of file Distributable_Thread.cpp.
{ }
void TAO_DistributableThread::cancel | ( | void | ) | [virtual] |
Definition at line 18 of file Distributable_Thread.cpp.
{ this->state_ = RTScheduling::DistributableThread::CANCELLED; }
RTScheduling::DistributableThread::DT_State TAO_DistributableThread::state | ( | void | ) | [virtual] |
Definition at line 24 of file Distributable_Thread.cpp.
{ return this->state_; }
RTScheduling::DistributableThread::DT_State TAO_DistributableThread::state_ [private] |
Definition at line 27 of file Distributable_Thread.h.