示例#1
0
 public static IStreamable <PartitionKey <int>, double> AggregateAverageLong(
     this IStreamable <PartitionKey <int>, long> source)
 {
     return(source.Aggregate(w => w.Average(payload => payload)));
 }