Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ dotnet run --project demo/Clockworks.Demo -- hlc-messaging

# BeforeSend/BeforeReceive workflow with coordinator stats
dotnet run --project demo/Clockworks.Demo -- hlc-coordinator

# Distributed simulation: at-least-once delivery + idempotency + HLC + vector clocks + timeouts
dotnet run --project demo/Clockworks.Demo -- ds-atleastonce
```

The `uuidv7` demo also has an optional benchmark mode:
Expand Down
1 change: 1 addition & 0 deletions demo/Clockworks.Demo/DemoCatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ internal static class DemoCatalog
["simulated-time"] = SimulatedTimeProviderShowcase.Run,
["hlc-messaging"] = HlcMessagingShowcase.Run,
["hlc-coordinator"] = HlcCoordinatorShowcase.Run,
["ds-atleastonce"] = DistributedAtLeastOnceCausalityShowcase.Run,
};
}
Loading