DEV Community

Discussion on: How React isn't reactive, and why you shouldn't care

 
ryansolid profile image
Ryan Carniato

Yeah exactly my point and thanks for digging a bit more. I'm going to edit the terminology in the article. It was my mistake for taking the FRP thing at face value. I will stick with our JavaScript made up terms rather than academic ones to avoid further confusion. I'm having a similar discussion on reddit where someone was really put off by me calling Rx FRP and even calling these different things. In JavaScript there are really 2 different types that have developed out but they are only small part of the spectrum.

I believe it is:
Reactive Streams - Asynchronous Events in continuous time
Fine Grained - Synchronous Behaviors in discrete time

But realistically you can have different combinations of these I suppose.

Thread Thread
 
trusktr profile image
Joe Pea

Qt's used-to-be-fine-grained reactivity just went from sync to async in a major version bump. Naming aside, I still look at it as the same thing, just everything is batched now.

Thread Thread
 
ryansolid profile image
Ryan Carniato

I've continued this line of thought over to a follow-up article: dev.to/ryansolid/what-the-hell-is-...