ChatPaginator
CoreProtect의 검색 결과처럼, 페이지화 된 채팅 UI를 위한 유틸리티 입니다.
Usage
생성자에 한 페이지에 표시할 데이터의 수를 표시해서
ChatPaginator인스턴스를 생성합니다.ChatPaginator paginator = new ChatPaginator(2);데이터들을 가지고 있는
List<T>와 표시할 페이지 값으로 표시되어야 하는 데이터를 얻을 수 있습니다.paginator.getElementOfPage(List.of("a", "b", "c"), 1); // "a", "b" paginator.getElementOfPage(List.of("a", "b", "c"), 2); // "c"
Last updated