PlantUML 문법 오류 수정 (외부 시퀀스 설계)

- 7개 외부 시퀀스 설계서 PlantUML 문법 오류 수정 완료

**주요 수정 사항**:
1. 비동기 화살표 수정
   - `->>` → `->` (동기 메시지)
   - `-->>` → `-->` (응답 메시지)

2. 캐시 호출 화살표 수정
   - `-.->` → `-->` (응답 화살표)

3. note 블록 수정
   - 단일 라인 `note right:` → 블록 형태로 변경

4. activate/deactivate 최적화
   - 비동기 이벤트 처리에서 불필요한 activate/deactivate 제거

**수정된 파일**:
- Todo완료및회의록반영.puml
- 대시보드조회.puml
- 회의록공유.puml
- 회의록상세조회및수정.puml
- 회의시작및실시간회의록작성.puml
- 회의예약및참석자초대.puml
- 회의종료및최종확정.puml

**검증 결과**:
 모든 화살표가 PlantUML 표준 문법 준수 (`->`, `-->`)
 잘못된 화살표 문법 모두 제거 (`->>`, `-->>`, `-.->`)
 activate/deactivate 쌍 정상 매칭
 PlantUML 렌더링 오류 해결

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kimjh
2025-10-22 15:09:18 +09:00
parent a43b0c63cb
commit abb2f8c280
7 changed files with 49 additions and 51 deletions
@@ -26,7 +26,7 @@ Meeting -> Meeting: 회의 종료 처리\n- 종료 시간 기록\n- 회의 통
Meeting -> Meeting: DB 저장
Meeting -> Meeting: Redis 캐시 무효화\n(meeting:info:{meetingId})
Meeting ->> EventHub: MeetingEnded 이벤트 발행\n(meetingId, userId, endTime)
Meeting -> EventHub: MeetingEnded 이벤트 발행\n(meetingId, userId, endTime)
note right
Partition Key: {meetingId}
Consumer Group:
@@ -40,12 +40,12 @@ Gateway -> WebApp: 회의 종료 완료 응답
WebApp -> User: 회의 통계 표시\n(총 시간, 참석자, 발언 횟수 등)
== 비동기 처리 - STT 종료 ==
EventHub -->> STT: MeetingEnded 이벤트 수신
EventHub --> STT: MeetingEnded 이벤트 수신
STT -> STT: 음성 녹음 중지
STT -> STT: 최종 STT 변환 완료 확인
== 비동기 처리 - AI Todo 추출 ==
EventHub -->> AI: MeetingEnded 이벤트 수신
EventHub --> AI: MeetingEnded 이벤트 수신
AI -> AI: 최종 회의록 분석
AI -> AI: Todo 자동 추출\n- 액션 아이템 식별\n- 담당자 자동 식별\n- 마감일 추출
AI -> AI: DB 저장 (AiTaskStatus)
@@ -65,7 +65,7 @@ Meeting -> Meeting: 회의록 섹션 링크 연결
Meeting -> Meeting: DB 저장 (Todo 테이블)
Meeting -> Meeting: Redis 캐시 무효화\n(todo:user:{userId})
Meeting ->> EventHub: TodoCreated 이벤트 발행\n(todoId, assignee, dueDate)
Meeting -> EventHub: TodoCreated 이벤트 발행\n(todoId, assignee, dueDate)
note right
Partition Key: {userId}
Consumer Group:
@@ -75,7 +75,7 @@ end note
Meeting -> AI: 200 OK (Todo 생성 완료)
== 비동기 처리 - 회의 종료 알림 ==
EventHub -->> Notification: MeetingEnded 이벤트 수신
EventHub --> Notification: MeetingEnded 이벤트 수신
Notification -> Notification: 회의 종료 알림 준비\n(참석자 전원)
Notification -> Notification: 이메일 발송
note right
@@ -87,7 +87,7 @@ note right
end note
== 비동기 처리 - Todo 할당 알림 ==
EventHub -->> Notification: TodoCreated 이벤트 수신
EventHub --> Notification: TodoCreated 이벤트 수신
Notification -> Notification: Todo 할당 알림 준비
Notification -> Notification: 담당자에게 이메일 발송
note right
@@ -118,7 +118,7 @@ else 필수 항목 작성 완료
Meeting -> Meeting: DB 저장 (TranscriptVersion)
Meeting -> Meeting: Redis 캐시 무효화
Meeting ->> EventHub: TranscriptFinalized 이벤트 발행\n(meetingId, version, finalizedAt)
Meeting -> EventHub: TranscriptFinalized 이벤트 발행\n(meetingId, version, finalizedAt)
note right
Partition Key: {meetingId}
Consumer Group:
@@ -129,7 +129,7 @@ else 필수 항목 작성 완료
Gateway -> WebApp: 회의록 확정 완료
WebApp -> User: 확정 완료 안내\n(버전 번호, 확정 시간)
EventHub -->> Notification: TranscriptFinalized 이벤트 수신
EventHub --> Notification: TranscriptFinalized 이벤트 수신
Notification -> Notification: 회의록 확정 알림 발송\n(참석자 전원)
end