Rx:WindowWithTime,WindowWithCount运算符在哪里?

时间:2013-02-28 20:21:02

标签: system.reactive

我在网上看到了这些;但是,当我通过NuGet导入最新的Rx时,它们似乎不存在。这些方法是否已重命名?

1 个答案:

答案 0 :(得分:2)

他们现在是Window的所有重载:

var maxWindowCount = 5;

.Window(maxWindowCount)
.Window(TimeSpan.FromSeconds(5))

Lee Campbell在WindowGroupJoinBuffer上有一篇很好的文章: http://leecampbell.blogspot.com/2011/03/rx-part-9join-window-buffer-and-group.html