-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathclasses.puml
More file actions
66 lines (55 loc) · 1.63 KB
/
classes.puml
File metadata and controls
66 lines (55 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@startuml RonClassesAndInstances
package base {
Semigroup <|-- Monoid
}
package ron {
Semigroup <|-- Semilattice
Semilattice <|-- BoundedSemilattice
Monoid <|-- BoundedSemilattice
}
package "ron-rdt (untyped)" {
BoundedSemilattice <|-- Reducible
note as instances_Reducible
• LwwRep
• ORSetRep
• RgaRep
• VersionVector
end note
Reducible -- instances_Reducible
}
package "ron-rdt (typed)" {
Replicated <|-- ReplicatedAsObject
Replicated <|-- ReplicatedAsPayload
note as instances_Replicated
• <i>opaque</i>
end note
Replicated --- instances_Replicated
note as instances_ReplicatedAsObject
• ORSet
• RGA
• VersionVector
• <i>struct_lww</i>
• <i>struct_set</i>
end note
ReplicatedAsObject -- instances_ReplicatedAsObject
note as instances_ReplicatedAsPayload1
as atom:
• Bool (UUID "false" or "true")
• Char (1-char string)
• Int64 (integer)
• Text (string)
• UUID
• <i>enum</i>
end note
ReplicatedAsPayload -- instances_ReplicatedAsPayload1
note as instances_ReplicatedAsPayload2
as sequence of atoms:
• Day (3 integers)
end note
ReplicatedAsPayload -- instances_ReplicatedAsPayload2
}
package ron-storage {
ReplicatedAsObject <|--- Collection
class Document
}
@enduml