summaryrefslogtreecommitdiff
path: root/python/examples/notification_callbacks.py
diff options
context:
space:
mode:
authorXusheng <xusheng@vector35.com>2021-05-31 15:46:57 +0800
committerXusheng <xusheng@vector35.com>2021-06-11 10:37:10 +0800
commit93f91f8d2f1fef1866b3ee87042ec62f99a8d087 (patch)
tree55a6439dcf66d005eaa3493fe6eb190c6338b47e /python/examples/notification_callbacks.py
parent7954a49df95eba2ec7efeca3b4493a6c51070236 (diff)
Add TypeReferenceChanged notification
Diffstat (limited to 'python/examples/notification_callbacks.py')
-rw-r--r--python/examples/notification_callbacks.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/examples/notification_callbacks.py b/python/examples/notification_callbacks.py
index 3f1a2d41..e299aa06 100644
--- a/python/examples/notification_callbacks.py
+++ b/python/examples/notification_callbacks.py
@@ -94,4 +94,7 @@ class DemoNotification(BinaryDataNotification):
def type_undefined(self, *args):
log.log_info(inspect.stack()[0][3] + str(args))
+ def type_ref_changed(self, *args):
+ log.log_info(inspect.stack()[0][3] + str(args))
+
PluginCommand.register("Register Notification", "", reg_notif)