Skip to content

Commit 6540689

Browse files
committed
update README File
1 parent 1b2ec95 commit 6540689

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ public class ClickEvent
188188
var stream = StreamBuilder<ClickEvent, ClickEvent>.CreateNewStream("ClickStream")
189189
.Stream()
190190
.Filter(e => !string.IsNullOrEmpty(e.PageUrl))
191-
.GroupBy(
191+
.GroupBySilently(
192192
e => e.PageUrl, // Key selector: group by PageUrl
193193
stateStoreName: "ClickGroupStore")
194-
.Aggregate<string, int>(
194+
.AggregateSilently<string, int>(
195195
e => e.PageUrl, // Key selector for aggregation
196196
(count, e) => count + 1, // Aggregation function: increment count
197197
stateStoreName: "ClickAggregateStore")

0 commit comments

Comments
 (0)