bt2: Mass notification -> message rename
[babeltrace.git] / bindings / python / bt2 / bt2 / port.py
index f5bc3ef7eba45b975a54ecea2724d51f99ba31bb..68039a43e0b4dfb03a0fa79e9df01883c6d9993a 100644 (file)
@@ -24,8 +24,8 @@ from bt2 import native_bt, object, utils
 import collections.abc
 import bt2.component
 import bt2.connection
-import bt2.notification_iterator
-import bt2.notification
+import bt2.message_iterator
+import bt2.message
 import copy
 import bt2
 
@@ -114,21 +114,21 @@ class _InputPort(_Port):
 
 
 class _OutputPort(_Port):
-    def create_notification_iterator(self, notification_types=None,
+    def create_message_iterator(self, message_types=None,
                                      colander_component_name=None):
-        notif_types = bt2.notification._notif_types_from_notif_classes(notification_types)
+        msg_types = bt2.message._msg_types_from_msg_classes(message_types)
 
         if colander_component_name is not None:
             utils._check_str(colander_component_name)
 
-        notif_iter_ptr = native_bt.py3_create_output_port_notif_iter(int(self._ptr),
+        msg_iter_ptr = native_bt.py3_create_output_port_msg_iter(int(self._ptr),
                                                                      colander_component_name,
-                                                                     notif_types)
+                                                                     msg_types)
 
-        if notif_iter_ptr is None:
-            raise bt2.CreationError('cannot create output port notification iterator')
+        if msg_iter_ptr is None:
+            raise bt2.CreationError('cannot create output port message iterator')
 
-        return bt2.notification_iterator._OutputPortNotificationIterator._create_from_ptr(notif_iter_ptr)
+        return bt2.message_iterator._OutputPortMessageIterator._create_from_ptr(msg_iter_ptr)
 
 
 class _PrivatePort(object._PrivateObject, _Port):
This page took 0.024105 seconds and 4 git commands to generate.