We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b2ec95 commit 6540689Copy full SHA for 6540689
README.md
@@ -188,10 +188,10 @@ public class ClickEvent
188
var stream = StreamBuilder<ClickEvent, ClickEvent>.CreateNewStream("ClickStream")
189
.Stream()
190
.Filter(e => !string.IsNullOrEmpty(e.PageUrl))
191
- .GroupBy(
+ .GroupBySilently(
192
e => e.PageUrl, // Key selector: group by PageUrl
193
stateStoreName: "ClickGroupStore")
194
- .Aggregate<string, int>(
+ .AggregateSilently<string, int>(
195
e => e.PageUrl, // Key selector for aggregation
196
(count, e) => count + 1, // Aggregation function: increment count
197
stateStoreName: "ClickAggregateStore")
0 commit comments