You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
So event listening is separate from reactive programming, and reactive programming is explicitly about streams? Also why is a user action considered async?m0meni– m0meni2016-04-28 00:35:18 +00:00Commented Apr 28, 2016 at 0:35
-
Thanks for all the detail! One more thing. How do you differentiate reactive programming and functional reactive programming? I see people use them almost interchangeably.m0meni– m0meni2016-04-28 01:07:10 +00:00Commented Apr 28, 2016 at 1:07
-
There are two different definitions of "Reactive Programming". One is simply the opposite (or rather dual) of Interactive Programming: programming where you react to the environment instead of you interacting with the environment. Think about this like the term "Iteration". Functional Reactive Programming, Events, Observers, etc. are just different ways of Reactive Programming, just like for loops, while loops, iterators etc. are different ways of iterating. So, FRP is a specific technique for doing RP. When people like Erik Meijer took ideas from FRP and re-interpreted them in the context ofJörg W Mittag– Jörg W Mittag2016-04-28 01:12:36 +00:00Commented Apr 28, 2016 at 1:12
-
… OO, this was also called RP, because it is kind-of like FRP, but not in a functional setting. FRP - F == RP. So, we now have two different interpretations of the term RP: FRP is a kind of RP (in the broad sense), as well as RP (in the narrow sense) is a kind of RP (in the broad sense). Both FRP and RP (in the narrow sense) are "cousins".Jörg W Mittag– Jörg W Mittag2016-04-28 01:14:18 +00:00Commented Apr 28, 2016 at 1:14
-
How would you implement RP in a OO environment? You mention "Mapping, folding, reducing, flatMapping, filtering, transforming, partitioning, merging, splitting, … Streams is exactly the same as mapping, folding, reducing, flatMapping, filtering, transforming, partitioning, merging, splitting, … collections." That sounds a lot like functional programming.m0meni– m0meni2016-04-28 01:17:14 +00:00Commented Apr 28, 2016 at 1:17
Add a comment
|
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you