Allow adding callback methods to UpdateState

This commit is contained in:
Lonami Exo
2017-09-07 18:58:54 +02:00
parent d4f36162cd
commit d237375208
2 changed files with 11 additions and 11 deletions

View File

@@ -907,16 +907,13 @@ class TelegramClient(TelegramBareClient):
def add_update_handler(self, handler):
"""Adds an update handler (a function which takes a TLObject,
an update, as its parameter) and listens for updates"""
return # TODO Implement
self._update_callbacks.append(handler)
self.updates.handlers.append(handler)
def remove_update_handler(self, handler):
return # TODO Implement
self._update_callbacks.remove(handler)
self.updates.handlers.remove(handler)
def list_update_handlers(self):
return # TODO Implement
return self._update_callbacks[:]
return self.updates.handlers[:]
# endregion