code review
This commit is contained in:
parent
2fa25f8b5e
commit
a6113526d0
|
@ -0,0 +1 @@
|
|||
Fix | performance regression on roomlist + proper display of space parents in explore rooms.
|
|
@ -216,8 +216,12 @@ interface RoomService {
|
|||
sortOrder: RoomSortOrder = RoomSortOrder.ACTIVITY): LiveData<PagedList<RoomSummary>>
|
||||
|
||||
/**
|
||||
* TODO Doc.
|
||||
* @param getFlattenParents When true, the list of known parent and grand parent summaries will be resolved.
|
||||
* Get's a live paged list from a filter that can be dynamically updated.
|
||||
*
|
||||
* @param queryParams The filter to use
|
||||
* @param pagedListConfig The paged list configuration (page size, initial load, prefetch distance...)
|
||||
* @param sortOrder defines how to sort the results
|
||||
* @param getFlattenParents When true, the list of known parents and grand parents summaries will be resolved.
|
||||
* This can have significant impact on performance, better be used only on manageable list (filtered by displayName, ..).
|
||||
*/
|
||||
fun getFilteredPagedRoomSummariesLive(
|
||||
|
|
Loading…
Reference in New Issue