reactive programming is a programming paradigm oriented around data flows and the propagation of change.
1
vote
0answers
11 views
Bacon.js lazy evaluation, mouse drag example breaks without log() statement
I'm trying to understand bacon.js and FRP so tried to make a simple drag and drop example, but I'm having trouble with the lazy evaluation of one piece of code. When I add a .log() into the stream it ...
0
votes
1answer
51 views
Intermittent Crash on KVO Notification
Here's what's going on: I've got a singleton monitoring the device's event store for changes. I have a property called events that I've wrapped in an eventsSignal RACSignal.
_eventsSignal = ...
0
votes
1answer
64 views
Why does Subject<T>.Dispose does not dispose current suscriptions?
Hi I've been thinking for some time that Subject<T> disposes all the subscriptions based on it if you manually call its Dispose method. But I've recently found it doesn't work that way, it just ...
3
votes
2answers
308 views
Perform action on the hour, every hour, with ReactiveCocoa
Trying to follow the best practices of ReactiveCocoa to update my UI on the hour, every hour. This is what I've got:
NSDateComponents *components = [[[NSCalendar sharedCalendar] calendar] ...
8
votes
1answer
109 views
Reactive table with reactive banana and gtk2hs
I have written a small application which tracks my progress in TV Series. The application is written in Haskell with functional reactive programming (FRP) with reactive banana.
The application can:
...
0
votes
4answers
110 views
Performance penalty with 1000s of running Timer objects?
Is there any performance considerations to having thousands of running Timer objects (spawned behind the scenes by calls to Reactive RX's Observable.Interval extension method)? This would be for a ...
1
vote
1answer
120 views
How to use ReactiveCocoa with Gesture Recognizers
I'm building an application using ReactiveCocoa. The top view is a menu which can be pulled down then pushed back up. I have to use two different gesture recognizers – one for pulling down and one for ...
0
votes
3answers
61 views
mocking NewThreadScheduler.Default
I have a code
var i = 0;
_searchService.FindAll().SubscribeOn(NewThreadScheduler.Default).Subscribe(i =>
{
i++
...
3
votes
1answer
63 views
waiting IObservable to get all elements error
I have this class:
public class TestService
{
public IObservable<int> GetObservable(int max)
{
var subject = new Subject<int>();
Task.Factory.StartNew(() =>
...
2
votes
1answer
90 views
How do I get the “old value” from a ReactiveCocoa signal?
If I'm using RACable like this:
[RACAbleWithStart(self.myProp) subscribeNext:^(id x) {
// Do stuff
}];
How can can I access the old value of myProp (before the change the caused the signal to ...
2
votes
1answer
43 views
Seemingly pointless excel formula
I'm debugging a massive spreadsheet, and I've come across this wierd little formula in multiple places:
=IF(P6="", "", P6)
No matter what, that cell is going to be equal to P6. Any pointers as to ...
1
vote
1answer
69 views
Building an Observable Repository with Rx
I'm working in the common scenario whereby I'd like to access a subset of a repository and not worry about having to keep it updated e.g. 'get all orders whose price is greater than 10'. I have ...
3
votes
1answer
99 views
Functional programming: reflecting state in absence of actual state change?
I am new to some of the advanced functional programming ideas, in particular: how to work with immutable data. Data structures are often composites, composed of smaller data structures. For ...
2
votes
1answer
99 views
Jumping mechanics in Netwire
I think I need some incentive on how to make this, I'm not really experienced in general platforming game mechanics...
Anyway, my player figure has this up to now:
movePlayer = proc p -> do
...
5
votes
1answer
154 views
Chaining dependent signals in ReactiveCocoa
In ReactiveCocoa, if we chaining several dependent signals, we must use subscribeNext: for the next signal in the chain to receive the value previous signal produced (for example, a result of an ...
1
vote
2answers
66 views
ReactiveCocoa takeUntil and takeWhile doesn't send last “next”
Consider the following snippet:
- (RACSignal *)startRouting {
...
}
- (RACSignal *)updateRoutingWithSession:(NSString *)session {
...
}
- (RACSignal *)fetchFlights {
return [[self startRouting] ...
2
votes
1answer
131 views
How do I create a ReactiveCocoa subscriber that recieves a signal only once, then unsubscribes/releases itself?
I'm currently registering a subscriber to a property signal like this:
[RACAble(self.test) subscribeNext:^(id x) {
NSLog(@"signal fired!");
}];
The default functionality is that it fires ...
4
votes
1answer
59 views
reactive-banana reactimate to retrieve the widget textCtrl Value like textCtrlGetValue
I would like to retrieve the widget value.
In the following, pressing the button b retrieve s_in and print it , in native wxhaskell.
b <- button f [text:= "print text in console",
...
7
votes
1answer
117 views
Event and Observable in FSharp
Is it equivalent/better to work
with the Event module on Event type
or with Observable on the publish property of an event
Functionally it seems equivalent, and I guess the difference is ...
0
votes
2answers
65 views
Setting {reactive: false} when searching a collection in Meteor still updates the template
I've got a news feed idea I'm trying out in Meteor, but I'm having issues with making the damn thing behave :) I want it to load up the news feed on page load / refresh, but not when the data changes. ...
1
vote
0answers
30 views
How to handle coordinated events in FRP
With functional reactive programming, is there a common technique for handling events in different streams that must be coordinated?
E.g. suppose you have streams A, B, C that are related like A -> ...
2
votes
1answer
222 views
When to use RACReplaySubject vs. RACMulticastConnection?
Using ReactiveCocoa, there seem to be two ways to have subscribers receive the same values from a signal, rather than re-triggering whatever operation generates those values: Via RACReplaySubject or ...
1
vote
1answer
52 views
RxJS is to events as promises are to async
In Requesting a clear, picturesque explanation of Reactive Extensions (RX)? I asked about what RX is all about, and I think, thanks to the provided answers I now got the idea.
In the referenced ...
1
vote
1answer
89 views
What should be used between Rx and .Net for event composition in such scenarios?
As I am learning the Rx (Reactive extensions), I want to know the different between given 2 peice of code:
Code 1
static void Main(string[] args)
{
FileSystemWatcher watcher = new ...
2
votes
1answer
244 views
Stop publishing when there are no subscribers and auto start when there are subscribers
How would I implement a RACSignal that would stop publishing when there are no subscribers to it and auto start when there are subscribers?
Here is a scenario:
Let us say I have a ...
0
votes
3answers
114 views
How does Rx relate to reactive programming? [closed]
I've read about the basic idea of reactive programming as having variables that change over time based on their source value expression. I've even implemented this using Expressions. But then I look ...
0
votes
0answers
176 views
Ember's RunLoop vs Meteor's Reactivity?
I'm wondering what the benefits and advantages of both systems. Ember is built around a RunLoop and Meteor is built around all these Contexts. From what I understand the RunLoop allows to queue up ...
0
votes
0answers
36 views
Subscribe part is not calling for each process in RX
I am doing a long running process in the server side. My client calls to wcf service and service method do the following things using RX.
Func<PollItem, IObservable<String>> process = pd ...
1
vote
1answer
156 views
how should I keep a running total of several values with bacon.js?
Messing around with a bacon.js. I'd like to keep a running total of values in a group of text inputs. The example on the github site uses .scan and an adder function, which works fine for the example ...
0
votes
2answers
48 views
changing the Interval of IConnectableObservable
I have a method called Subscribe() where am doing this :-
private void Subscribe(){
IObservable<long> timer = Observable.Interval(TimeSpan.FromMilliseconds(250), ...
4
votes
1answer
383 views
What are the reference ownership semantics of ReactiveCocoa?
When I create a signal and bring it into the scope of a function, its effective retain count is 0 per Cocoa conventions:
RACSignal *signal = [self createSignal];
When I subscribe to the signal, it ...
5
votes
1answer
761 views
How to using ReactiveCocoa to transparently authenticate before making API calls?
I am using ReactiveCocoa in an app which makes calls to remote web APIs. But before any thing can be retrieved from a given API host, the app must provide the user's credentials and retrieve an API ...
2
votes
1answer
145 views
Reactiveui Command binding
I apologize in advance if my question is a bit vague.
I am looking into and learning reactiveui which I find a very interesting concept. For that, I am building a small application using WPF and ...
0
votes
1answer
99 views
Where is selectMany in ReactiveCocoa 0.10.0
The ReactiveCocoa API has gone under some major changes recently and I cannot find the substitute function for the selectMany operator in version 0.10.0.
// RACSubscribableProtocol.h in version ...
4
votes
2answers
106 views
java Process.waitfor is a blocking call
I want to be able to kick off an external process from within the JVM and reach on its completion.
I could use the ProcessBuilder to create a Process and then do Process.waitFor() to wait for its ...
1
vote
1answer
162 views
C++ reactive extensions learning resources [closed]
recently MS opensourced Rx:
http://isocpp.org/blog/2012/11/reactive-extensions-rx-now-supports-linq-in-c-goes-open-source
and I thought about playing around with it, but I cant find tutorials for ...
0
votes
2answers
143 views
How do I create an observable function in F#, based on an existing C# snippet?
I am trying to convert the following code to F#:
static void Main(string[] args)
{
var y = Observable.Create<int>(x =>
{
x.OnNext(5);
return (() => { ...
2
votes
2answers
183 views
create observable<bool> from observablecollection
I have ObservableCollection<T> and I need to create observable<bool> which returns true if collection contains any elements
I try to do this
var collectionHasElementsObservable =
...
6
votes
1answer
140 views
reactive-banana-wx `sink` does not generate an event enabling post-sink processing
I am currently redesigning a piece of legacy wxHaskell using the reactive-banana and reactive-banana-wx packages. However, in order to avoid dynamic network construction (where I ran into a thread ...
0
votes
1answer
136 views
“lazy evaluation” and “reactive programming” [closed]
With at least one example, can someone demonstrate how lazy evaluation is functionally different than reactive programming. Alternatively, are they very similar?
To help with the question, see below:
...
3
votes
2answers
385 views
Cancelable timeout in Reactive Cocoa
I want to implement a countdown timer using Reactive Cocoa in iOS. The timer should run for X seconds and do something in every second. The part I cannot figure out is the way I could cancel the ...
10
votes
0answers
644 views
Functional reactive programming — is Fay expressive enough? [closed]
So I'm doing a fairly involved javascript/html client with lots of ajax calls and other involvements of callback-ism. I'm entertaining the thought of using Fay for this purpose. I'm aware of Elm. ...
6
votes
0answers
247 views
Scala.React vs. Qt Signals & Slots [closed]
With the rise of Scala.React I was wondering whether Qt's Signals & Slots mechanism would become obsolete when using Qt as a GUI framework for a Scala program. How would one of the two approaches ...
40
votes
3answers
2k views
What's the status of current Functional Reactive Programming implementations?
I'm trying to visualize some simple automatic physical systems (such things as pendulum, robot arms,etc.) in Haskell.
Often those systems can be described by equations like
df/dt = c*f(t) + u(t)
...
0
votes
1answer
61 views
RX2 exception in EventLoopScheduler
We have immigrated from RX1.1.11111.1 to RX 2.0.20823.2. And now we have encountered a rare exception from the EventLoopScheduler:
an Unhandled Exception occured in non UI thread.
...
1
vote
2answers
367 views
Reactive programming, scaling and Meteor
We are evaluating Meteor for our new generation of enterprise-scale system. One of the amazing built-in features is that every data model in the client is bound to the model in the database and is ...
1
vote
1answer
98 views
Recursive call to IObservable in Windows Phone 7 application using Rx
We have a Windows Phone 7 application which uses a set of 3 service methods using Reactive Extensions, defined as follows:
public static class ServiceClient
{
public static ...
-8
votes
1answer
224 views
How powerful is javaScript going to be with linq.js + Rx.js compared to Haskell? [closed]
I know a little about Haskell and know it's very powerful programming language due to its mathematical consistency.
I know some about LINQ and it has lots of similarities to Haskell, in fact, Erik ...
0
votes
1answer
164 views
Reactive Extensions
Matthew Podwysicky-author of sample code
<html>
<head>
<title>Learning ReactiveExtensions</title>
<!--scripts-->
<script ...
2
votes
1answer
263 views
How does Reactive Framework differ from F# Events?
If I'm familiar with F# events already, and I don't plan to have too much C# interop, are there significant reasons to consider using the Reactive Framework?
