File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,8 @@ classDiagram
87
87
class Event {
88
88
-int eventId
89
89
}
90
+ class Transport {
91
+ }
90
92
class MessageEvent {
91
93
-String senderId
92
94
-String recipientId
@@ -111,16 +113,22 @@ classDiagram
111
113
}
112
114
class CommitLog {
113
115
<<Abstract>>
116
+ addEntry()
114
117
}
115
118
class TotalOrderCommitLog {
119
+ addEntry()
116
120
}
117
121
class PartialOrderCommitLog {
122
+ addEntry()
118
123
}
119
124
Event <|-- MessageEvent
120
125
Event <|-- TimeoutEvent
121
126
MessageEvent -- MessageStatus
127
+ MessageEvent -- MessagePayload
128
+ CommitLog -- Replica
129
+ Transport o-- Event
130
+ Transport o-- Replica
131
+ Replica --> Event: emits, receives
122
132
CommitLog <|-- TotalOrderCommitLog
123
133
CommitLog <|-- PartialOrderCommitLog
124
- CommitLog -- Replica
125
-
126
134
```
You can’t perform that action at this time.
0 commit comments