Mercurial > libervia-backend
comparison src/core/xmpp.py @ 2050:046449cc2bff
core, bridge, frontends: removed deprecated bridge method askConfirmation, confirmationAnswer, actionResult, actionResultExt and getWaitingConf
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 28 Aug 2016 19:23:58 +0200 |
parents | a2bc5089c2eb |
children | 0931b5a6213c |
comparison
equal
deleted
inserted
replaced
2049:b67aece4a667 | 2050:046449cc2bff |
---|---|
48 self.__connected = False | 48 self.__connected = False |
49 self.profile = profile | 49 self.profile = profile |
50 self.host_app = host_app | 50 self.host_app = host_app |
51 self._mess_id_uid = {} # map from message id to uid use in history. Key: (full_jid,message_id) Value: uid | 51 self._mess_id_uid = {} # map from message id to uid use in history. Key: (full_jid,message_id) Value: uid |
52 self.conn_deferred = defer.Deferred() | 52 self.conn_deferred = defer.Deferred() |
53 self._waiting_conf = {} # callback called when a confirmation is received | |
54 self._progress_cb = {} # callback called when a progress is requested (key = progress id) | 53 self._progress_cb = {} # callback called when a progress is requested (key = progress id) |
55 self.actions = {} # used to keep track of actions for retrieval (key = action_id) | 54 self.actions = {} # used to keep track of actions for retrieval (key = action_id) |
56 | 55 |
57 def getConnectionDeferred(self): | 56 def getConnectionDeferred(self): |
58 """Return a deferred which fire when the client is connected""" | 57 """Return a deferred which fire when the client is connected""" |