Public メソッド | |
def | pull |
データを受信する(サブクラス実装用) | |
def | subscribeInterface |
データ受信通知への登録(サブクラス実装用) | |
def | unsubscribeInterface |
データ受信通知からの登録解除(サブクラス実装用) |
出力ポートコンシューマのためのクラス 各具象クラスは、以下の関数の実装を提供しなければならない。
OutPortConsumer.py の 40 行で定義されています。
def pull | ( | self | ) |
def subscribeInterface | ( | self, | ||
properties | ||||
) |
データ受信通知への登録(サブクラス実装用)
指定されたプロパティ情報に基づいて、データ受信通知に登録する関数。
※サブクラスでの実装参照用
self | ||
properties | 登録用プロパティ |
OutPortConsumer.py の 79 行で定義されています。
def unsubscribeInterface | ( | self, | ||
properties | ||||
) |
データ受信通知からの登録解除(サブクラス実装用)
データ受信通知からの登録を解除するための関数。
※サブクラスでの実装参照用
self | ||
properties | 登録解除用プロパティ |
OutPortConsumer.py の 99 行で定義されています。