Understand Reactive Programming using RxJS

André Staltz
InstructorAndré Staltz
Share this video with your friends

Social Share Links

Send Tweet
Published 9 years ago
Updated 5 years ago

This lesson introduces Reactive Programming using RxJS in simple terms, with a concrete example and no scary terminology.

[00:00] Let's talk about "Reactive Programming." You may have heard of the "Introduction to Reactive Programming You've Been Missing," a gist which I wrote. Maybe it's too long for you to read the whole thing. It's all right. We can explain it through this series of lessons.

[00:14] A lot of people have heard of reactive, but it sounds too cryptic, too scary, and advanced. For instance, sometimes you see a piece of documentation that looks like this, flat mapped lattice with observable sequences. This can get really confusing.

[00:28] This series of lessons is here mainly to help you to grasp the core idea in Reactive Programming and to help you how to think in Reactive Programming in order to apply it to a real code base.

[00:40] What is it? Well, it's mainly programming with event streams. Now, what is an event stream? It's a sequence of events happening over time. You can kind of think of it as an asynchronous array.

[00:53] Here's time, and it goes forward, to the right. Events happen over time, and we can add an event listener to this whole sequence. Whenever an event happens, we can react to it by doing something. That is the main idea.

[01:09] Another type of sequence that you see in JavaScript, just, for instance, arrays. How does event streams relate to arrays? Well, arrays are sequences in space. All of these items in this array exist now in memory.

[01:26] On the other hand, event streams don't have that property. So, the events might happen over time, and you don't even know what are the items that might happen.

[01:39] Here we have those same items that happened in the array, but we have them happening over time every 400 milliseconds, like this. We add an event listener to the source, event stream, by calling subscribe. Whenever an event happens, we just console log that out, and we saw it happening every 400 milliseconds.

[02:00] It's different than arrays, because here if we just console log the array, we see the whole thing at once. The nice thing with event streams is that they have similar functions like arrays do.

[02:16] Let's say that our problem is to add all the numbers in this array. Right? As you can see, they're not actually numbers. They're strings that look like numbers, we have to do some transformations here. You might want to feel like using for loops for doing this, but we're going to use map and filter and these stuff, which is the function approach.

[02:37] Let's take this source array, and we will map each of these items to their parsed version. This will return a new array. That is important. Source did not change. We just made a new array that will be called "Result," where each of these items is mapped. If we log that Result array, we get this.

[03:03] Sometimes, it was not able to parse it, so we saw not a number. That's how we use filter in order to ignore those which are not a number. Then we get yet a new array with only numbers.

[03:19] Now, since we want to add all those numbers, we need to call reduce by giving X and Y, where X is the previous item and Y is the current item while we're iterating over the array. We can add them. This reduces instead of returning an array, it will return us a number, which is what Result is. Then finally, we see that we added all the numbers.

[03:44] We can do the same thing with event streams, actually. Here, we can get this source event stream. It's not an array. We can map over it, getting each event X and mapping it to parsed Nth X. We see basically the same thing, but happening over time.

[04:05] Obviously we can call filter. And then we want to add all those numbers, so we're going to call reduce. There we go.

[04:21] Now, it's ticking over time, adding all those numbers. When it ends, it returns us 33. That is basically programming with event streams.

Brendan Whiting
Brendan Whiting
~ 7 years ago

How does the reduce function know that you've reached the end of the event stream?

André Staltz
André Staltzinstructor
~ 7 years ago

Hi Brendan. A stream can emit 3 types of events: normal data to the next callback, errors to the error callback, and end of stream with the complete callback. This is how the reduce operator can conclude with one value: as soon as the source completes, it outputs the reduced value.

Brendan Whiting
Brendan Whiting
~ 7 years ago

Cool thx

Rob
Rob
~ 7 years ago

Observable.interval(400).take(9).map(...) is not explained. Why? Never mind the man behind the curtain?

Nauris Vilcmeirs
Nauris Vilcmeirs
~ 6 years ago

4:21 - it should be 42, not 33.

jaybe78
jaybe78
~ 5 years ago
Milan Barande
Milan Barande
~ 5 years ago

Please get a microphone pop filter

J. Matthew
J. Matthew
~ 5 years ago

This is such a great intro to the concept.

Kunal Ranjan
Kunal Ranjan
~ 2 years ago

i am unable to understand below syntax - var source = Rx.Observable.interval(400).take(9) .map(i => ['1', '1', 'foo', '2', '3', '5', 'bar', '8', '13'][i]); The array inside map method, which one is our calling array.

Lucas Minter
Lucas Minter
~ 2 years ago

André is accessing the array through the index. You can read more about it here. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array#access_an_array_item_by_its_index

Markdown supported.
Become a member to join the discussionEnroll Today