- Timestamp:
- Jun 15, 2018, 1:29:12 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/storeManager.py
r7473 r7474 18 18 class StoreManager(): 19 19 def __init__(self,*args,**kwargs): 20 self.dbg=False 20 21 if 'dbg' in kwargs.keys(): 21 22 self.dbg=kwargs['dbg'] 22 self.dbg=True23 23 self._propagate_dbg=False 24 24 self.store=None … … 36 36 self.threads={} #Dict with the functions that must execute each action 37 37 self.static={} #Dict with the functions that must execute each action 38 self.threads_progress={} 38 self.threads_progress={} #"" "" "" the progress for each launched thread 39 39 self.running_threads={} #"" "" "" the running threads 40 40 self.plugins_registered={} #Dict with the relation between plugins and actions 41 self.register_action_progress={} 41 self.register_action_progress={} #Dict with the progress for each function/parent_action pair 42 42 self.action_progress={} #Progress of global actions based on average progress of individual processes 43 43 self.extra_actions={} #Dict with the actions managed by plugins and no defined on the main class as related_actions
Note: See TracChangeset
for help on using the changeset viewer.