Top "Reactive-programming" questions

Reactive Programming is a programming paradigm oriented around data flows and the propagation of change.

How to block thread to wait for response in vert.x?

I have a situation where I call an external API A and use its response to feed to request of …

java reactive-programming vert.x event-driven
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 …

haskell functional-programming erlang reactive-programming
How to handle network failure in React-Native, when network is off

How to handle network failure in React-Native, when device not connected to network. My scenario is am trying to connect …

facebook reactjs facebook-javascript-sdk react-native reactive-programming
Filter list of objects in RxJava

I am trying to filter the list on the basis of it's property. For example, Sensors class has a property …

android rx-java reactive-programming rx-java2 rx-android
How to convert rxJava2's Observable to Completable?

I have Observable stream, and I want to convert it to Completable, how I could do that?

java observable rx-java reactive-programming rx-java2
Backpressure mechanism in Spring Web-Flux

I'm a starter in Spring Web-Flux. I wrote a controller as follows: @RestController public class FirstController { @GetMapping("/first") public Mono&…

java reactive-programming spring-webflux backpressure
How apply pagination in reactive Spring Data?

In Spring Data, we have PagingAndSortingRepository which inherits from CrudRepository. In reactive Spring Data, we only have ReactiveSortingRepository which inherits …

spring-data reactive-programming spring-data-mongodb
EventBus/PubSub vs (reactive extensions) RX with respect to code clarity in a single threaded application

Currently, I am using an EventBus/PubSub architecture/pattern with Scala (and JavaFX) to implement a simple note organizing app (…

event-handling system.reactive reactive-programming event-bus rx-java
What is difference between observer pattern and reactive programming?

Recently I heard the term reactive programming a lot, but when I searched for it, what I discovered was only …

observer-pattern reactive-programming
Reactive Extensions (Rx) + MVVM =?

One of the main examples being used to explain the power of Reactive Extensions (Rx) is combining existing mouse events …

mvvm system.reactive reactive-programming