Github user mtaylor commented on the issue:
https://github.com/apache/activemq-artemis/pull/1628
@RaiSaurabh I am not sure how it can work with paging. Since the full list
needs to be sorted before the pages are populated. This solution will receive
the first N (page size) unsorted elements from a collection, then sort them,
meaning only the page results are sorted. We should instead implement this on
the broker so that sorting + paging works.---
