Module: deluge
Branch: master
Commit: b8270be10fa415e40e2a74c6bf7dd45e01146b48

Author: Andrew Resch <[email protected]>
Date:   Wed Mar 24 13:29:41 2010 -0700

Add ability for plugins to set their component update interval by
setting a 'update_interval' value in their object.

---

 deluge/plugins/pluginbase.py |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/deluge/plugins/pluginbase.py b/deluge/plugins/pluginbase.py
index f6fae5e..451ce58 100644
--- a/deluge/plugins/pluginbase.py
+++ b/deluge/plugins/pluginbase.py
@@ -37,6 +37,10 @@ import deluge.component as component
 from deluge.log import LOG as log
 
 class PluginBase(component.Component):
+    def __init__(self, name):
+        interval = self.update_interval if hasattr(self, update_interval) else 
1
+        super(PluginBase, self).__init__(name, interval)
+                    
     def enable(self):
         raise NotImplementedError("Need to define an enable method!")
 
@@ -45,7 +49,7 @@ class PluginBase(component.Component):
 
 class CorePluginBase(PluginBase):
     def __init__(self, plugin_name):
-        super(CorePluginBase, self).__init__("CorePlugin." + plugin_name)
+        super(PluginBase, self).__init__("CorePlugin." + plugin_name)
         # Register RPC methods
         component.get("RPCServer").register_object(self, plugin_name.lower())
         log.debug("CorePlugin initialized..")

-- 
You received this message because you are subscribed to the Google Groups 
"deluge-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/deluge-commit?hl=en.

Reply via email to