Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Properties
b
c
f
h
n
t
u
v
+
Files
File List
OpenRTM_aist
ConnectorBase.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
# -*- coding: euc-jp -*-
3
4
17
18
import
OpenRTM_aist
19
20
21
31
class
ConnectorInfo
:
32
"""
33
"""
34
60
def
__init__
(self, name_, id_, ports_, properties_):
61
self.
name
= name_
# str
62
self.
id
= id_
# str
63
self.
ports
= ports_
# [str,...]
64
self.
properties
= properties_
# OpenRTM_aist.Properties
65
66
#!
67
# @if jp
68
# @class ConnectorBase
69
# @brief Connector ���쥯�饹
70
#
71
# InPort/OutPort, Push/Pull �Ƽ� Connector �����������뤿���# ���쥯�饹�� # # @since 1.0.0 # # @else # @class ConnectorBase # @brief Connector Base class # # The base class to derive subclasses for InPort/OutPort, # Push/Pull Connectors # # @since 1.0.0 # # @endif class ConnectorBase(OpenRTM_aist.DataPortStatus): """ """ ## # @if jp # @class Profile # @brief Connector profile �������빽¤�� # # ConnectorBase ����Ӥ����������饹�ǰ��� ConnectorProfile ��¤�Ρ� # # @since 1.0.0 # # @else # @class Profile # @brief local representation of Connector profile # # ConnectorProfile struct for ConnectorBase and its subclasses. # # @since 1.0.0 # # @endif ## # @if jp # @brief �ǥ��ȥ饯�� # @else # @brief Destructor # @endif def __del__(self): pass ## # @if jp # @brief Profile ���� # # Connector Profile ��������� # # @else # @brief Getting Profile # # This operation returns Connector Profile # # @endif # virtual const ConnectorInfo& profile() = 0; def profile(self): pass ## # @if jp # @brief Connector ID ���� # # Connector ID ��������� # # @else # @brief Getting Connector ID # # This operation returns Connector ID # # @endif # virtual const char* id() = 0; def id(self): pass ## # @if jp # @brief Connector ̾���� # # Connector ̾��������� # # @else # @brief Getting Connector name # # This operation returns Connector name # # @endif # virtual const char* name() = 0; def name(self): pass ## # @if jp # @brief ��³����ؿ� # # Connector ���ݻ����Ƥ�����³�������� # # @else # @brief Disconnect connection # # This operation disconnect this connection # # @endif # virtual ReturnCode disconnect() = 0; def disconnect(self): pass ## # @if jp # @brief Buffer ��������� # # Connector ���ݻ����Ƥ��� Buffer ���֤� # # @else # @brief Getting Buffer # # This operation returns this connector's buffer # # @endif # virtual CdrBufferBase* getBuffer() = 0; def getBuffer(self): pass ## # @if jp # @brief �����ƥ��ֲ� # # ���Υ��ͥ������ƥ��ֲ����� # # @else # # @brief Connector activation # # This operation activates this connector # # @endif # virtual void activate() = 0; def activate(self): pass ## # @if jp # @brief ���ƥ��ֲ� # # ���Υ��ͥ��������ƥ��ֲ����� # # @else # # @brief Connector deactivation # # This operation deactivates this connector # # @endif # virtual void deactivate() = 0; def deactivate(self): pass
72
# ���쥯�饹��
73
#
74
# @since 1.0.0
75
#
76
# @else
77
# @class ConnectorBase
78
# @brief Connector Base class
79
#
80
# The base class to derive subclasses for InPort/OutPort,
81
# Push/Pull Connectors
82
#
83
# @since 1.0.0
84
#
85
# @endif
86
class
ConnectorBase
(
OpenRTM_aist.DataPortStatus
):
87
"""
88
"""
89
90
108
109
115
def
__del__
(self):
116
pass
117
118
119
132
def
profile
(self):
133
pass
134
135
148
def
id
(self):
149
pass
150
151
152
165
def
name
(self):
166
pass
167
168
169
182
def
disconnect
(self):
183
pass
184
185
186
199
def
getBuffer
(self):
200
pass
201
202
203
217
def
activate
(self):
218
pass
219
220
221
235
def
deactivate
(self):
236
pass
OpenRTM_aist.ConnectorBase.ConnectorInfo.id
id
Definition:
ConnectorBase.py:62
OpenRTM_aist.ConnectorBase.ConnectorInfo.name
name
Definition:
ConnectorBase.py:61
OpenRTM_aist.ConnectorBase.ConnectorBase.__del__
def __del__(self)
Destructor.
Definition:
ConnectorBase.py:115
OpenRTM_aist.ConnectorBase.ConnectorBase.getBuffer
def getBuffer(self)
Getting Buffer.
Definition:
ConnectorBase.py:199
OpenRTM_aist.ConnectorBase.ConnectorBase.activate
def activate(self)
Connector activation.
Definition:
ConnectorBase.py:217
OpenRTM_aist.ConnectorBase.ConnectorInfo.__init__
def __init__(self, name_, id_, ports_, properties_)
Constructor.
Definition:
ConnectorBase.py:60
OpenRTM_aist.ConnectorBase.ConnectorInfo.ports
ports
Definition:
ConnectorBase.py:63
OpenRTM_aist.DataPortStatus.DataPortStatus
DataPortStatus mixin class.
Definition:
DataPortStatus.py:47
OpenRTM_aist.ConnectorBase.ConnectorBase
Definition:
ConnectorBase.py:86
OpenRTM_aist.ConnectorBase.ConnectorBase.name
def name(self)
Getting Connector name.
Definition:
ConnectorBase.py:165
OpenRTM_aist.ConnectorBase.ConnectorBase.deactivate
def deactivate(self)
Connector deactivation.
Definition:
ConnectorBase.py:235
OpenRTM_aist.ConnectorBase.ConnectorInfo.properties
properties
Definition:
ConnectorBase.py:64
OpenRTM_aist.ConnectorBase.ConnectorBase.profile
def profile(self)
Getting Profile.
Definition:
ConnectorBase.py:132
OpenRTM_aist.ConnectorBase.ConnectorBase.id
def id(self)
Getting Connector ID.
Definition:
ConnectorBase.py:148
OpenRTM_aist.ConnectorBase.ConnectorInfo
Definition:
ConnectorBase.py:31
OpenRTM_aist.ConnectorBase.ConnectorBase.disconnect
def disconnect(self)
Disconnect connection.
Definition:
ConnectorBase.py:182
openrtm_aist_python
Author(s): Shinji Kurihara
autogenerated on Mon Feb 28 2022 23:01:06