시퀀스 다이어그램은 매우 강력합니다.
3250 단어 programmingdesignproductivity
조언을 부탁드립니다https://sequencediagram.org/.
이 정도면 괜찮아 보입니다. 팀 구성원은 무슨 일이 일어나고 있는지 쉽게 이해하고 적절한 설계 결정을 내리기 위해 누락된 사항을 조사하는 데 도움이 됩니다. 그것은 shareable이며 마지막으로 간단한 코드입니다.
title Sample project
actor User
participantgroup #pink **Cluster**
participantgroup #lightgreen ** Fancy\nfrontend**
fontawesome5regular f0f8 Frontend
end
participantgroup #lightblue ** Fancy\nbackend**
control Backend
database Database
end
entity #grey:1 Third party
end
group #2f2e7b Some user action #white
abox over Third party:We haven't choose an implementation
User->Frontend:Change something
Frontend->Backend:Validate
activate Backend
Backend->Backend:Validate
Backend->Database:Persist
deactivate Backend
Backend<--Database:Watch persisted
activate Backend
Backend<->Database:Fetch something
Backend->Backend:Validate everything
alt In some case
Backend->Frontend:Send notification to user
Frontend-->>User:Send notification
else Other case
Backend->Frontend:Create a job
create Job
Backend->Job:Create
Job->Third party:Interact with third party
destroysilent Job
Backend->Frontend:Send notification to user
Frontend-->>User:Send notification
deactivate Backend
end
end
Reference
이 문제에 관하여(시퀀스 다이어그램은 매우 강력합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mhmxs/sequence-diagrams-are-so-powerful-4i2k텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)