We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#41 PR에서 ApplicantService내에 getLastKey라는 private 메서드가 존재합니다.
private Long getLastKey(List<Applicant> applicants) { return applicants.isEmpty() ? CursorRequest.NONE_KEY : applicants.get(applicants.size() - 1).getId(); }
커서 페이징을 하는 api의 서비스에서 모두 사용하는 로직이여서 util 함수로 분리하면 좋을 거 같습니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
#41 PR에서 ApplicantService내에 getLastKey라는 private 메서드가 존재합니다.
커서 페이징을 하는 api의 서비스에서 모두 사용하는 로직이여서 util 함수로 분리하면 좋을 거 같습니다.
The text was updated successfully, but these errors were encountered: