-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[issue #17]Refactoring 2024 (daily commit)
- Loading branch information
SyureOjisan
committed
Jan 29, 2024
1 parent
e4c9dd3
commit 1dfdf28
Showing
2 changed files
with
29 additions
and
13 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
```mermaid | ||
sequenceDiagram | ||
participant roots as RootSourceCollections | ||
participant src as ASourceCollection | ||
participant srcobj as SourceObject | ||
roots ->>+ src: コレクションを更新 | ||
src ->>+ src: 再帰処理 | ||
loop コレクション内のオブジェクト数 | ||
src ->>+ srcobj: ソースオブジェクトを更新 | ||
srcobj ->>- src: 更新後のソースオブジェクト | ||
end | ||
src -->>- roots : 更新後のコレクション | ||
``` |