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")