-
Notifications
You must be signed in to change notification settings - Fork 0
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
[Feat] 알림 API 구현 #40
Merged
Merged
[Feat] 알림 API 구현 #40
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 알림 조회 - 알림 확인 - 읽지 않은 알림 개수 조회 - 알림 구독
- 알림 전송 기능 추가 - 댓글/대댓글, 인기글 전송 시 알림 전송
chaen-ing
approved these changes
Jan 28, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SseEmitter는 처음 보는 기능인데 알아보기 쉽게 잘 짜신 것 같습니다!! 수고하셨어요!!👍👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#️⃣연관된 이슈
📝작업 내용
SseEmitter 생성 위한 알림 구독 기능 구현
서버에서 클라이언트로 일방향 전송 푸시 알림을 전송하기 위해서 SseEmitter 생성이 필요
클라이이트는 알림 수신 하기 전에 해당 api를 통해 요청해서 구독을 진행해야 함
위 그림처럼 요청을 보내면 Text-Strem으로 계속 수신받을 수 있음
알림 전송 기능 구현
SseEmitterManager를 통해 emitter 정보 저장 및 삭제 관리
알림 전송 시 emitterId를 통해 emitter 조회 후 푸시 알림 전송
댓글, 대댓글, 인기글 선정 시 알림 전송
알림 조회 기능 구현
읽지 않은 알림 개수 조회 기능 구현
알림 읽음 처리 기능 구현
알림 삭제 기능 구현
💬리뷰 요구사항(선택)