From 2cae66b0ea86235788220c9f7b05aa2ad4fdc58f Mon Sep 17 00:00:00 2001 From: John (J5) Palmieri Date: Fri, 24 Aug 2007 22:25:56 +0000 Subject: More follow_name_owner_changed optimiztion * reasoning changed from a FIXME to a NOTE to explain why we need to follow_name_owner_changed --- (limited to 'sugar/clipboard') diff --git a/sugar/clipboard/clipboardservice.py b/sugar/clipboard/clipboardservice.py index 0e357fe..d975330 100644 --- a/sugar/clipboard/clipboardservice.py +++ b/sugar/clipboard/clipboardservice.py @@ -82,7 +82,14 @@ class ClipboardService(gobject.GObject): """Connect dbus signals to our GObject signal generating callbacks""" bus = dbus.SessionBus() if not self._connected: - proxy_obj = bus.get_object(DBUS_SERVICE, DBUS_PATH) + # NOTE: We need to follow_name_owner_changes here + # because we can not connect to a signal unless + # we follow the changes or we start the service + # before we connect. Starting the service here + # causes a major bottleneck during startup + proxy_obj = bus.get_object(DBUS_SERVICE, + DBUS_PATH, + follow_name_owner_changes=True) self._dbus_service = dbus.Interface(proxy_obj, DBUS_SERVICE) self._dbus_service.connect_to_signal('object_added', self._object_added_cb) -- cgit v0.9.1