From 6540689b91ef45fc1379a618354dee0a5ea9adf5 Mon Sep 17 00:00:00 2001 From: Enes Hoxha Date: Tue, 10 Dec 2024 15:00:28 +0100 Subject: [PATCH] update README File --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2799c46..d03f6d2 100644 --- a/README.md +++ b/README.md @@ -188,10 +188,10 @@ public class ClickEvent var stream = StreamBuilder.CreateNewStream("ClickStream") .Stream() .Filter(e => !string.IsNullOrEmpty(e.PageUrl)) - .GroupBy( + .GroupBySilently( e => e.PageUrl, // Key selector: group by PageUrl stateStoreName: "ClickGroupStore") - .Aggregate( + .AggregateSilently( e => e.PageUrl, // Key selector for aggregation (count, e) => count + 1, // Aggregation function: increment count stateStoreName: "ClickAggregateStore")