From 93f91f8d2f1fef1866b3ee87042ec62f99a8d087 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Mon, 31 May 2021 15:46:57 +0800 Subject: Add TypeReferenceChanged notification --- python/examples/notification_callbacks.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/examples/notification_callbacks.py') 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) -- cgit v1.3.1