diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-23 13:58:02 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-23 13:58:02 +0000 |
commit | db215b7e0007a207b8775d78c6693153e16f2731 (patch) | |
tree | f62c3f26b8de39624b01620f958273d1e05db605 /synapse/federation/transport/client.py | |
parent | Initial stab at implementing a batched get_missing_pdus request (diff) | |
download | synapse-db215b7e0007a207b8775d78c6693153e16f2731.tar.xz |
Implement and use new batched get missing pdu
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 8b137e7128..80d03012b7 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -219,3 +219,22 @@ class TransportLayerClient(object): ) defer.returnValue(content) + + @defer.inlineCallbacks + @log_function + def get_missing_events(self, destination, room_id, earliest_events, + latest_events, limit, min_depth): + path = PREFIX + "/get_missing_events/%s" % (room_id,) + + content = yield self.client.post_json( + destination=destination, + path=path, + data={ + "limit": int(limit), + "min_depth": int(min_depth), + "earliest_events": earliest_events, + "latest_events": latest_events, + } + ) + + defer.returnValue(content) |