Indirect tuple conversion

pull/5192/head
Erik Johnston 2019-05-16 14:21:39 +01:00
parent 95f3fcda3c
commit 2c662ddde4
1 changed files with 6 additions and 0 deletions

View File

@ -81,6 +81,9 @@ class RelationPaginationToken(object):
def to_string(self):
return "%d-%d" % (self.topological, self.stream)
def as_tuple(self):
return attr.astuple(self)
@attr.s
class AggregationPaginationToken(object):
@ -108,6 +111,9 @@ class AggregationPaginationToken(object):
def to_string(self):
return "%d-%d" % (self.count, self.stream)
def as_tuple(self):
return attr.astuple(self)
class RelationsWorkerStore(SQLBaseStore):
@cached(tree=True)