Package io.github.ma1uta.matrix
Class Page<T>
- java.lang.Object
-
- io.github.ma1uta.matrix.Page<T>
-
- Type Parameters:
T
- pagination item.
public class Page<T> extends Object
Pagination.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Page.Query
Query parameters.
-
Constructor Summary
Constructors Constructor Description Page()
-
-
-
Field Detail
-
start
private String start
The token the pagination starts from. If dir=b this will be the token supplied in from.
-
end
private String end
The token the pagination ends at. If dir=b this token should be used again to request even earlier events.
-
state
private List<Event> state
A list of state events relevant to showing the chunk. For example, if lazy_load_members is enabled in the filter then this may contain the membership events for the senders of events in the chunk. Unless include_redundant_members is true, the server may remove membership events which would have already been sent to the client in prior calls to this endpoint, assuming the membership of those members has not changed.
-
-