简体   繁体   中英

What's the difference between event-stream.through and event-stream.map

According to the documentation in event-stream , seems like the difference of this two method is sync or async. But I'm still not sure what the difference really means.

Well, the difference is basically something completely different:

While the through stream only re-emits, the map stream also is able to modify the data. The first one simply emits what it gets, the data is sent 1:1 to the subscriber. The last one has an additional transformation step, so the data may be 1:1, but does not need to be.

In other words, the through stream is a kind of identity , while the map is a kind of mapping .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM