Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(operators): add window operators (plus some name bike-shedding?) #195

Closed
5 tasks
benlesh opened this issue Aug 21, 2015 · 1 comment · Fixed by #202
Closed
5 tasks

feat(operators): add window operators (plus some name bike-shedding?) #195

benlesh opened this issue Aug 21, 2015 · 1 comment · Fixed by #202
Assignees
Milestone

Comments

@benlesh
Copy link
Member

benlesh commented Aug 21, 2015

The following represent all overrides of the original RxJS 2/3 window:

  • window<T>(closingNotifier: Observable<any>) => Observable<Observable<T>>
  • windowWhen<T>(closingNotifierFactory: () => Observable<any>) => Observable<Observable<T>>
  • windowToggle<T, O>(openings: Observable<O>, closingSelector?: (openValue: O) => Observable<any>) => Observable<Observable<T>>

Plus the additional windowWithCount and windowWithTime:

  • windowCount<T>(count: number, skip?: number) => Observable<Observable<T>>
  • windowTime<T>(timeSpan: number, timeShift?: number, scheduler?: Scheduler) => Observable<Observable<T>>
@benlesh benlesh added this to the Alpha release milestone Aug 21, 2015
@benlesh benlesh self-assigned this Aug 21, 2015
@benlesh
Copy link
Member Author

benlesh commented Aug 21, 2015

... buffer would face similar renamings.

Thoughts? Objections?

@lock lock bot locked as resolved and limited conversation to collaborators Jun 8, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant