Skip to content

Commit a6d9358

Browse files
committed
Update README.md
1 parent fb638ed commit a6d9358

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ classDiagram
8787
class Event {
8888
-int eventId
8989
}
90+
class Transport {
91+
}
9092
class MessageEvent {
9193
-String senderId
9294
-String recipientId
@@ -111,16 +113,22 @@ classDiagram
111113
}
112114
class CommitLog {
113115
<<Abstract>>
116+
addEntry()
114117
}
115118
class TotalOrderCommitLog {
119+
addEntry()
116120
}
117121
class PartialOrderCommitLog {
122+
addEntry()
118123
}
119124
Event <|-- MessageEvent
120125
Event <|-- TimeoutEvent
121126
MessageEvent -- MessageStatus
127+
MessageEvent -- MessagePayload
128+
CommitLog -- Replica
129+
Transport o-- Event
130+
Transport o-- Replica
131+
Replica --> Event: emits, receives
122132
CommitLog <|-- TotalOrderCommitLog
123133
CommitLog <|-- PartialOrderCommitLog
124-
CommitLog -- Replica
125-
126134
```

0 commit comments

Comments
 (0)