Mercurial > libervia-backend
diff frontends/src/bridge/DBus.py @ 425:e4e9187e3b5b
backend, bridge: asynchronous history
quick_frontend: use of asynchronous history
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 08 Nov 2011 01:08:11 +0100 |
parents | 6c20c76abdcc |
children | c243f4cb2ad9 |
line wrap: on
line diff
--- a/frontends/src/bridge/DBus.py Mon Nov 07 22:27:07 2011 +0100 +++ b/frontends/src/bridge/DBus.py Tue Nov 08 01:08:11 2011 +0100 @@ -96,8 +96,8 @@ def getContacts(self, profile_key="@DEFAULT@"): return self.db_core_iface.getContacts(profile_key) - def getHistory(self, from_jid, to_jid, size): - return self.db_core_iface.getHistory(from_jid, to_jid, size) + def getHistory(self, from_jid, to_jid, limit, between=True, callback=None, errback=None): + return self.db_core_iface.getHistory(from_jid, to_jid, limit, between, reply_handler=callback, error_handler=lambda err:errback(err._dbus_error_name[len(const_ERROR_PREFIX)+1:])) def getLastResource(self, contact_jid, profile_key="@DEFAULT@"): return unicode(self.db_core_iface.getLastResource(contact_jid, profile_key))