jython/sample.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 import rtm
3 
4 global mgr, rtc1, rtc2
5 
6 # Managerへの参照を取得します
8 # NullComponent.soをロードします
9 mgr.load("NullComponent")
10 # NullComponentのインスタンスを2つ作ります
11 rtc1 = mgr.create("NullComponent", "np1")
12 rtc2 = mgr.create("NullComponent", "np2")
13 # 2つのコンポーネントを接続します
14 rtm.connectPorts(rtc1.port("dataOut"), rtc2.port("dataIn"))
15 rtcs = [rtc1, rtc2]
16 # 2つのコンポーネントが同期実行されるように設定します
18 # 2つのコンポーネントをアクティベートします
19 rtc1.start()
20 rtc2.start()
21 
def serializeComponents(rtcs, stopEC=True)
set up execution context of the first RTC so that RTCs are executed sequentially
Definition: jython/rtm.py:373
def findRTCmanager(hostname=None, rnc=None)
get RTCmanager
Definition: jython/rtm.py:321
def connectPorts(outP, inPs, subscription="flush", dataflow="Push", bufferlength=1, rate=1000)
connect ports
Definition: jython/rtm.py:433


hrpsys
Author(s): AIST, Fumio Kanehiro
autogenerated on Thu May 6 2021 02:41:51