내외부 시퀀스 - 불필요 이벤트 제거

This commit is contained in:
cyjadela
2025-10-23 10:03:35 +09:00
parent 5d7e0c42f0
commit 6e2baa2386
10 changed files with 110 additions and 97 deletions
@@ -35,8 +35,17 @@ activate Meeting
Meeting -> Meeting: 회의 세션 생성
Meeting -> EventHub: MeetingStarted 이벤트 발행
activate EventHub
Meeting -> STT: POST /stt/recording/start\n(meetingId, participantIds)
activate STT
note right
동기 호출로 즉시 녹음 시작
회의 시작과 음성 녹음이 원자적으로 처리
end note
STT -> STT: 음성 녹음 준비 및 시작
STT --> Meeting: 200 OK (recordingId)
deactivate STT
Meeting --> Gateway: 201 Created
deactivate Meeting
@@ -49,16 +58,7 @@ Frontend -> Frontend: 회의 화면으로 전환
Frontend --> User: 회의 진행 화면 표시
deactivate Frontend
== 음성 녹음 시작 ==
EventHub -> STT: MeetingStarted 이벤트 구독
activate STT
STT -> STT: 음성 녹음 준비
STT --> EventHub: 녹음 준비 완료
deactivate STT
deactivate EventHub
== 음성 녹음 진행 ==
== 실시간 회의록 작성 (반복) ==