Fix links to Delta State Replicated Data Types paper

This commit is contained in:
Arnout Engelen 2019-03-28 12:11:55 +01:00
parent 777173f988
commit e6c41b6cc1
No known key found for this signature in database
GPG key ID: BB8C0F854A1E2105
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@ trait ReplicatedData {
* receiving side, resulting in set {'a', 'b', 'c', 'd'}. * receiving side, resulting in set {'a', 'b', 'c', 'd'}.
* *
* Learn more about this in the paper * Learn more about this in the paper
* <a href="paper http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a>. * <a href="http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a>.
*/ */
trait DeltaReplicatedData extends ReplicatedData { trait DeltaReplicatedData extends ReplicatedData {

View file

@ -1061,8 +1061,8 @@ object Replicator {
* actor using the `Replicator.props`. If it is started as an ordinary actor it is important * actor using the `Replicator.props`. If it is started as an ordinary actor it is important
* that it is given the same name, started on same path, on all nodes. * that it is given the same name, started on same path, on all nodes.
* *
* <a href="paper http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a> * <a href="http://arxiv.org/abs/1603.01529">Delta State Replicated Data Types</a>
* is supported. delta-CRDT is a way to reduce the need for sending the full state * are supported. delta-CRDT is a way to reduce the need for sending the full state
* for updates. For example adding element 'c' and 'd' to set {'a', 'b'} would * for updates. For example adding element 'c' and 'd' to set {'a', 'b'} would
* result in sending the delta {'c', 'd'} and merge that with the state on the * result in sending the delta {'c', 'd'} and merge that with the state on the
* receiving side, resulting in set {'a', 'b', 'c', 'd'}. * receiving side, resulting in set {'a', 'b', 'c', 'd'}.