[RxJS] Split an RxJS observable conditionally with Windowtoggle

Source: Internet
Author: User

There is variants of the window operator that allow you to split RxJS observables in different ways. In this lesson we'll explore the Windowtoggle variant and see one of their use cases in user interfaces.

Let's say we want to build a new functionality, it is only receive the source when MouseDown and stop receiving data when MOU Se up.

To do, we can use ' windowtoggle ':

ConstClockobs = Rx.Observable.interval ( +);ConstDownobs = Rx.Observable.fromEvent (document,'MouseDown');ConstUpobs = Rx.Observable.fromEvent (document,'MouseUp');ConstSource =clockobs. Windowtoggle (Downobs, ()=upobs).Switch(). Subscribe (console.log);/*--0--1--2--3--4--5--6--7--8--9--windowtoggle----------D--------U--------------3--4--5-| Switch/mergeall-----------3--4--5---------------*/

[RxJS] Split an RxJS observable conditionally with Windowtoggle

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.