Mercurial > libervia-backend
diff src/core/xmpp.py @ 1522:7d7e57a84792
core: progression handling improvments:
- getProgress has been renamed to progressGet to follown new naming convention
- new signals: progressStarted, progressFinished and progressError to indicate state of progressing events
- new method progressGetAll to get all progressing events of all profile (or only one profile)
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 25 Sep 2015 19:19:12 +0200 |
parents | 8d61160ee4b8 |
children | 591c32dbfb0b |
line wrap: on
line diff
--- a/src/core/xmpp.py Fri Sep 25 19:19:12 2015 +0200 +++ b/src/core/xmpp.py Fri Sep 25 19:19:12 2015 +0200 @@ -46,7 +46,7 @@ self.host_app = host_app self.conn_deferred = defer.Deferred() self._waiting_conf = {} # callback called when a confirmation is received - self._progress_cb_map = {} # callback called when a progress is requested (key = progress id) + self._progress_cb = {} # callback called when a progress is requested (key = progress id) def getConnectionDeferred(self): """Return a deferred which fire when the client is connected"""