0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-08 12:18:48 +02:00

Return the current stream position from add_messages_to_device_inbox

This commit is contained in:
Mark Haines 2016-08-31 10:42:52 +01:00
parent 1aa3e1d287
commit a662252758

View file

@ -33,7 +33,8 @@ class DeviceInboxStore(SQLBaseStore):
messages_by_user_and_device(dict):
Dictionary of user_id to device_id to message.
Returns:
A deferred that resolves when the messages have been inserted.
A deferred stream_id that resolves when the messages have been
inserted.
"""
def select_devices_txn(txn, user_id, devices):
@ -81,6 +82,8 @@ class DeviceInboxStore(SQLBaseStore):
stream_id
)
defer.returnValue(self._device_inbox_id_gen.get_current_token())
def get_new_messages_for_device(
self, user_id, device_id, current_stream_id, limit=100
):