Tagged Questions
reactive programming is a programming paradigm oriented around data flows and the propagation of change.
111
votes
9answers
24k views
What is (functional) reactive programming?
What does functional reactive programming (FRP) mean in practice? What is non-reactive programming?
The description in Wikipedia is quite abstract.
22
votes
4answers
4k views
What is LINQ to events a.k.a RX Framework?
What is LINQ to events a.k.a RX Framework aka the Reactive Extensions in .NET 4.0 (but also available as backported versions)?
In other words, what is all the stuff in System.Reactive.dll for?
18
votes
3answers
5k views
101 Rx Examples
EDIT: Thanks for the link to the wiki, I think that since its already started there, its easier to go there to check it out. However the question here is also good, so people who are not around the ...
17
votes
4answers
2k views
Advantages of .NET Rx over classic events?
.NET 4.0 beta 2 has introduced the IObservable and IObserver interfaces.
What are the advantages compared to classic .NET events? Doesn't this solve the same problem?
14
votes
1answer
125 views
reactive-banana: Firing event that contain the most up to date value of a Behavior
Suppose I have an event trigger which I want to do two things when fired. First, I want it to update the value of some behavior. Second, if other conditions are met, I want it to fire another event ...
14
votes
2answers
166 views
Where to apply Behavior (and other types) in FRP
I'm working on a program using reactive-banana, and I'm wondering how to structure my types with the basic FRP building blocks.
For instance, here's a simplified example from my real program: say my ...
14
votes
5answers
5k views
Reactive Extensions (Rx) + MVVM =?
One of the main examples being used to explain the power of Reactive Extensions (Rx) is combining existing mouse events into a new 'event' representing deltas during mouse drag:
var mouseMoves = from ...
13
votes
1answer
661 views
Am I using reactive-banana right?
Here's an example Haskell FRP program using the reactive-banana library. I'm only just starting to feel my way with Haskell, and especially haven't quite got my head around what FRP means. I'd really ...
10
votes
3answers
345 views
Examples of useful or non-trival dual interfaces
Recently Erik Meijer and others have show how IObservable/IObserver is the dual of IEnumerable/IEnumerator. The fact that they are dual means that any operation on one interface is valid on the other, ...
9
votes
1answer
249 views
Why is this Yampa ball-bouncing going into an endless loop?
I'm trying to simulate a bouncing ball with the Yampa-Framework: Given an initial x-position, height and velocity, the ball should bounce according to gravity rules. The signal function takes a ...
9
votes
1answer
674 views
IConnectableObservables in Rx
Can someone explain the differences between an Observable and a ConnectableObservable? The Rx Extensions documentation is very sparse and I don't understand in what cases the ConnectableObservable is ...
8
votes
1answer
335 views
Do reactive programming and pi-calculus have things in common?
Do reactive programming and pi-calculus have things in common?
7
votes
1answer
91 views
reactive-banana: How to create an AddHandler?
I'm currently trying to get to know FRP through Heinrich Apfelmus' reactive-banana, which seems to be a quite well documented and simple library, compared to the other ones I've looked at.
However, I ...
7
votes
4answers
421 views
Behavior in reactive-banana
Pardon me, I'm just starting to look into reactive-banana and FRP.
The author of reactive-banana made this example per my suggestion, in which he creates a counter which can be increased and ...
6
votes
1answer
126 views
Can reactive-banana handle cycles in the network?
We have code like this:
guiState :: Discrete GuiState
guiState = stepperD (GuiState []) $
union (mkGuiState <$> changes model) evtAutoLayout
evtAutoLayout :: Event GuiState
...
6
votes
2answers
170 views
Why does IObservable<T>.First() block?
I've been trying to get my head around the Reactive Extensions for .NET of late, but have hit a bit of a conceptual wall: I can't work out why IObservable.First() blocks.
I have some sample code that ...
6
votes
1answer
465 views
The difference between Reactive and Functional-Reactive programming
I have been doing some research into reactive programming recently and I'm finding it hard to find a good description of the difference between Reactive and Functional-Reactive.
Is it simply that ...
6
votes
2answers
1k views
Has RX Extensions “solved” the problem of complex event driven programming?
I've been using Rx on a new financial analysis project that receives all data asynchronously. I've been pretty amazed at my personal productivity and how much more understandable my event based code ...
6
votes
2answers
3k views
Using System.Reactive in .NET 3.5 (in a shipping product)
This question is no longer relevant now that microsoft have released a proper version of the Rx framework on devlabs
Original Question
I've downloaded the Silverlight 3 toolkit and rebased ...
5
votes
3answers
260 views
Haskell: FRP Reactive Parsec?
Is there (or is it possible to have) reactive parsec (or any other pure functional parser) in Haskell?
simply, I want to feed parser my self char by char. and get result as much as I feed enough to ...
5
votes
2answers
540 views
Delay and de-duplication using Reactive Extensions (Rx)
I want to use Reactive Extensions to transform some messages and relay them after a small delay.
The messages look something like this:
class InMsg
{
int GroupId { get; set; }
int Delay { get; ...
5
votes
3answers
2k views
Is the Reactive Framework (RX) available for use in Mono yet?
Been searching but the only thing I found was http://evain.net/blog/articles/2009/07/30/rebasing-system-reactive-to-the-net-clr which I got to work, but it feels like there should be a simpler way, ...
5
votes
3answers
366 views
Rx in .Net 3.5 not Asynchronous?
I am playing with Rx in .Net3.5SP1 and trying the 101 Rx Samples. I am trying the first sample (Start - Run Code Asynchronously) but it doesn't seem to actually run asynchronously. For example,
...
5
votes
1answer
1k views
Reactive Framework for .NET examples that prove its usefulness
There's been quite some hype around the new Reactive Framework in .NET 4.0. While I think I undestood its basic concept I am not completely sold that it is that useful. Can you come up with a good ...
4
votes
1answer
119 views
Simple exercises to learn Netwire? [closed]
Haskell wiki > Netwire has some good introductory material to Netwire, but now (as a hobbyist Haskeller) I'm interested in something more. What kinds of simple exercises would be beneficial in order ...
4
votes
2answers
174 views
UI input with reactive-banana-wx
How do you get the content of ui elements when using reactive-banana? The event0 returns an event of type Event (), which has unit type instead of the type of the control. event1 takes an event of ...
4
votes
2answers
601 views
What's the difference between Knockout.js and Rx.js?
Does anyone know the differences between RxJs and Knockout? To me on the surface they seem to be trying to solve the same problem, to build an event driven UI. But someone who has had experience ...
3
votes
1answer
160 views
Using Reactive extension (Rx) for MSMQ message receive using async pattern (queue.BeginReceive,queue.EndReceive)
I have been using Rx for a while now for Events on my projects and dedicatedly for Socket programming and the good part is its doing well. Managing my code, performance advantage and much better to ...
3
votes
1answer
116 views
Is the 'Signal' representation of Functional Reactive Programming correct?
I have been researching FRP and found a bunch of different implementations. One model I have seen is one I will refer to as the 'Signal' representation. This essential combines Events and Behaviours ...
3
votes
1answer
301 views
Use Clojure Cells or add-watcher for reactive program?
I want to use alot of reactive (dataflow) type programming techniques in my clojure program. Is uses "add-watcher" on clojure refs going to be good enough to do this. A simple case for this would be ...
3
votes
2answers
174 views
Where do I find Observable in VS2010?
I have VS2010 RTM installed and I want to add a reference to the Reactive Framework, I've looked for system.CoreEx and system.Reactive and they are not there.
What am I doing wrong?
3
votes
2answers
898 views
Equivalent to LINQ to Events in Scala
Is it possible to do something similar to LINQ to Events in Scala? Is this similar to the new Traversable trait in Scala 2.8?
2
votes
2answers
64 views
Understand the flow of control when calling a blocking code from non-blocking block?
I have the following code
static void Main(string[] args)
{
//var source = BlockingMethod();
var source2 = NonBlocking();
...
2
votes
2answers
74 views
Programming usable and maintainable code
I'm new to reactive programming and came across a problem...
My code is looking like this:
IsBusy = true;
service.BeginGetClients(param, c =>
{
var r = ...
2
votes
2answers
171 views
Why do I NOT need Publish on this cold observable?
Since I'm having a cold Observable here and I subscribe to "grouped" several times, why do I NOT need Publish here? I would have expect it to bring up unwanted results when I run it but to my surprise ...
2
votes
1answer
80 views
Why am I getting non-deterministic results with Repeat()
I'm trying to expand my knowledge on Rx. So I'm just playing around with streams and try to make them behave as I would expect them to do.
While I have read bevor that the Repeat() operator has ...
2
votes
2answers
92 views
How to handle multiple windows and single data structure in reactive-banana
I'm wondering how reactive-banana was designed to handle the following situation:
Let's say I have a central data structure. The user is able to freely open and close any number of different types of ...
2
votes
2answers
136 views
How can I create an Rx observable which stops publishing events when the last observer unsubscribes?
I'll create an observable (through a variety of means) and return it to interested parties, but when they're done listening, I'd like to tear down the observable so it doesn't continue consuming ...
2
votes
2answers
233 views
windows install for Haskell Frp package?
I was trying to install the reactive banana package on Windows, with little success.
It seems to know about the packages, but fail on installation.
Any hints?
>cabal install Reactive
Resolving ...
2
votes
3answers
182 views
Working with a list<String> and Reactive extensions
I have started researching Reactive extensions and I would like to know how to do the following (ill try and keep it simple):
1) have a list of string (or any other type)
2) when an item is added to ...
2
votes
1answer
517 views
Aggregating the result of a ForkJoin in Rx
Given this piece of code:
var loadAll =
Observable.ForkJoin(
service1.FindBooksAsObservable().Select(s => s),
service2.FindBooksAsObservable().Select(s => s),
...
2
votes
3answers
302 views
Observable.Delay calling Dispose before OnNext is fired
I am having problem understanding how Observable.Delay works and when the Dispose() is meant to be called. Would anyone familiar with Rx be able to help please?
The following code snippet:
...
2
votes
3answers
412 views
Reactive Framework Hello World
This is an easy program to introduce the Reactive Framework. But I want to try the error handler, by modifying the program to be:
var cookiePieces = Observable.Range(1, 10);
cookiePieces.Subscribe(x ...
2
votes
1answer
203 views
Using MonadPlus in FRP.Reactive.FieldTrip
I'm studying FRP at this moment through FieldTrip adaptor. And hit the problem with strange way of frames scheduling and integration. So now I'm trying to build own marker Event for aligning Behaviour ...
1
vote
2answers
32 views
In RX how to combine two sources of different types
Set up:
First IObservable produces values of type A
Second IObservable produces values of type B
They produce value at different pace (quite fast, up to every 10 ms)
What I am trying to achieve:
...
1
vote
1answer
38 views
Throttle operation resulting in a slow performance on window phone 7
I am building a WP7 application which heavily uses RX and I came across a problem. When adding Throttle with a value bigger that 20 ms it significantly reduces performance.
The snippet below ...
1
vote
4answers
93 views
Computed array values in C# - reactive programming
Example 1
As we know there's the concept of computed columns in databases where a column is computed based on adjacent columns' values.
The problem is that computed columns can't relate to other ...
1
vote
1answer
38 views
ScheduledDisposable
What is a good case/example for using the ScheduledDisposable in Reactive Rx
I like the using the CompositeDisposable and SerialDisposable, but would you need the ScheduledDisposable.
1
vote
1answer
56 views
Is there a Rx Framework function which will create an observable which ends after a timespan has elapsed?
Some observables are just so needy. They want you to listen and listen and listen to all they have to say, maybe for all of time! What if I can really only handle a few seconds' of events? Could I ...
1
vote
1answer
38 views
Is it possible to create an IObservable from an Action listener?
I have a class that has an event defined as an Action<Guid>, as opposed to a classic EventHandler with EventArgs. Is there a way to convert this to an IObservable the same way would be done ...