Merge branch 'master' of github.com:vacp2p/specs

This commit is contained in:
decanus 2019-08-04 15:35:19 +02:00
commit 45372da68a
No known key found for this signature in database
GPG Key ID: E95B8C69228FF5B4
3 changed files with 35 additions and 0 deletions

1
CNAME Normal file
View File

@ -0,0 +1 @@
specs.vac.dev

14
assets/mvds/batch.msc Normal file
View File

@ -0,0 +1,14 @@
# Alice and Bob: batch data sync
msc {
hscale="2", wordwraparcs=on;
alice [label="Alice"],
bob [label="Bob"];
--- [label="batch data sync"];
alice => alice [label="add messages to payload state"];
alice >> bob [label="send payload with messages"];
bob => bob [label="add acks to payload state"];
bob >> alice [label="send payload with acks"];
}

View File

@ -0,0 +1,20 @@
# Alice and Bob: interactive data sync
msc {
hscale="2", wordwraparcs=on;
alice [label="Alice"],
bob [label="Bob"];
--- [label="interactive data sync"];
alice => alice [label="add offers to payload state"];
alice >> bob [label="send payload with offers"];
bob => bob [label="add requests to payload state"];
bob >> alice [label="send payload with requests"];
alice => alice [label="add requested messages to state"];
alice >> bob [label="send payload with messages"];
bob => bob [label="add acks to payload state"];
bob >> alice [label="send payload with acks"];
}