Skip to content
New issue

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

[Refactor/#358] 아티클 읽음 기록 이벤트 처리로 리펙토링 #359

Merged
merged 5 commits into from
Aug 27, 2024

Conversation

belljun3395
Copy link
Collaborator

@belljun3395 belljun3395 commented Aug 26, 2024

🎫 연관 이슈

resolved: #358

💁‍♂️ PR 내용

  • 아티클 읽음 기록 이벤트 처리로 리펙토링
  • ReadArticlesUseCase -> BrowseArticlesUseCase로 컨벤션 통일

🙏 작업

  • ReadArticleEvent 생성 및 처리

🙈 PR 참고 사항

📸 스크린샷

스크린샷 2024-08-26 오후 4 23 24

이벤트 리스너까지는 동기로 이후 이벤트 처리는 비동기로 처리하였는데 스레드 및 트렌잭션이 분리되어 있는 것을 확인하였습니다.

🤖 테스트 체크리스트

  • 체크 미완료
  • 체크 완료

@belljun3395 belljun3395 requested a review from hun-ca as a code owner August 26, 2024 07:53
@github-actions github-actions bot added the refactor 기존 기능에 대해 개선할 때 사용됩니다. label Aug 26, 2024
Comment on lines +13 to +16
@EventListener
fun handleEvent(event: ReadArticleEvent) {
articleViewHisAsyncHandler.addArticleViewHis(event.articleId, event.memberId, event.category)
}
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1차적으로 EventListener에서 이벤트를 받습니다.


@EventListener
fun handleEvent(event: ReadArticleEvent) {
articleViewHisAsyncHandler.addArticleViewHis(event.articleId, event.memberId, event.category)
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

EventListener에서 받은 이벤트를 2차로 처리합니다.

eg)
articleViewHisAsyncHandler.addArticleViewHis는 이벤트를 비동기로 처리함

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이렇게 처리하는게 추후 이벤트를 처리하는 로직이 추가될 때 대응하기 편할 것 같아서 이벤트 처리를 현재 구현과 같이 통일하려 합니다.

@belljun3395 belljun3395 merged commit 93eb1b8 into dev Aug 27, 2024
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
refactor 기존 기능에 대해 개선할 때 사용됩니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

아티클 읽음 기록 이벤트 처리로 리펙토링
1 participant