#include <InPortConnector.h>
Public メソッド | |
DATAPORTSTATUS_ENUM | InPortConnector (ConnectorBase::Profile &profile, CdrBufferBase *buffer) |
コンストラクタ | |
virtual | ~InPortConnector () |
デストラクタ | |
virtual const Profile & | profile () |
Profile 取得 | |
virtual const char * | id () |
Connector ID 取得 | |
virtual const char * | name () |
Connector 名取得 | |
virtual ReturnCode | disconnect ()=0 |
接続解除関数 | |
virtual CdrBufferBase * | getBuffer () |
Buffer を所得する | |
virtual ReturnCode | read (cdrMemoryStream &data)=0 |
read 関数 | |
Protected 変数 | |
Logger | rtclog |
Profile | m_profile |
CdrBufferBase * | m_buffer |
InPort の Push/Pull 各種 Connector を派生させるための 基底クラス。
DATAPORTSTATUS_ENUM RTC::InPortConnector::InPortConnector | ( | ConnectorBase::Profile & | profile, | |
CdrBufferBase * | buffer | |||
) |
コンストラクタ
virtual RTC::InPortConnector::~InPortConnector | ( | ) | [virtual] |
デストラクタ
virtual const Profile& RTC::InPortConnector::profile | ( | ) | [virtual] |
virtual const char* RTC::InPortConnector::id | ( | ) | [virtual] |
virtual const char* RTC::InPortConnector::name | ( | ) | [virtual] |
virtual ReturnCode RTC::InPortConnector::disconnect | ( | ) | [pure virtual] |
接続解除関数
Connector が保持している接続を解除する
RTC::ConnectorBaseを実装しています。
RTC::InPortPullConnector, と RTC::InPortPushConnectorで実装されています。
virtual CdrBufferBase* RTC::InPortConnector::getBuffer | ( | ) | [virtual] |
virtual ReturnCode RTC::InPortConnector::read | ( | cdrMemoryStream & | data | ) | [pure virtual] |
read 関数
Buffer からデータを InPort へ read する関数
RTC::InPortPullConnector, と RTC::InPortPushConnectorで実装されています。
Logger RTC::InPortConnector::rtclog [protected] |
Profile RTC::InPortConnector::m_profile [protected] |
CdrBufferBase* RTC::InPortConnector::m_buffer [protected] |