LUC.DVVSet
1.0.3
See the version list below for details.
dotnet add package LUC.DVVSet --version 1.0.3
NuGet\Install-Package LUC.DVVSet -Version 1.0.3
<PackageReference Include="LUC.DVVSet" Version="1.0.3" />
paket add LUC.DVVSet --version 1.0.3
#r "nuget: LUC.DVVSet, 1.0.3"
// Install LUC.DVVSet as a Cake Addin #addin nuget:?package=LUC.DVVSet&version=1.0.3 // Install LUC.DVVSet as a Cake Tool #tool nuget:?package=LUC.DVVSet&version=1.0.3
Dotted-version vector clocks
This is adaptation from Erlang to C#
Original code: https://github.com/ricardobcl/Dotted-Version-Vectors
STRUCTURE
clock() :: {entries(), values()}.
vector() :: [{counter(), values()}].
entries() :: [{id()}, {counter(), [values()]}].
id() :: string().
values() :: [value()].
value() :: string().
counter() :: non_neg_integer().
Structure of clocks
{id,{counter,{values}}
Each operation with clock causes a counter increment. Id is a unique value, entries in the clock cannot have the same id value.
Methods
Create (clock, Id)
Metod Create advances the causal history with the given id.
Example: we take a empty clock with a value "v1" and create a new clock with id "a":
Create(new Clock("v1"), "a") → [{a,1,["v1"]}],[]
Join
Return a entries without any values.
Example: Join([{a,1,["v1"]}],[] → [{a,1,[]}]
Clock Update(clock1, clock2, Id)
Advances the causal history of the first clock with the given id, while synchronizing with the second clock, thus the new clock is causally newer than both clocks in the argument. The new value is the anonymous dot of the clock.
Examples:
Update([{a,1,[]}],["v2"](first clock),[{a,1,["v1"]}],[](second clock),"a"(id)) → [{a,2,[v2]}],[]
Update([{a,1,[]}],["v4"](first clock),[{a,2,[]}],["v2"](second clock),"b"(id)) → [{a,2,[v2]}],[{b,1,[v4]}],[]
Update([{a,1,[]}],["v5"](first clock),[{a,2,[]}],[v2](second clock),"a"(id)) → [{a,3,[v5][v2]}],[]
SyncClocks(Clock clock1, Clock clock2)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- Microsoft.Bcl.HashCode (>= 1.1.1)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Improved ClockToString and StringToClock