Questions tagged [reactive-programming]
Reactive Programming is a programming paradigm oriented around data flows and the propagation of change.
25 questions
2
votes
0
answers
172
views
Java Project Reactor/WebFlux token service
I'm trying to achieve a thread-safe reactive token service. The point is that all subscribers must wait until the token is received or updated (when expired). It works, but I want a second opinion ...
2
votes
0
answers
49
views
Reactive objects, like in vue
I like the reactivity of vue and created a function that makes Object's reactive. Just like in vue 3 .reactive
I wonder if my ...
1
vote
1
answer
54
views
Reactjs Component Reusability
I am working on a project in react. Where most of the data on different tabs have a table. So I design the "TableItems" component and passed the data according to the component. Right now ...
1
vote
1
answer
502
views
Awaited store for Svelte
In my Svelte app, I need to reactively fetch data from the server and then render the result. The ideal data struture for this is a store whose values are promises – eg. like this:
...
1
vote
1
answer
624
views
Multithreaded observer pattern in Rust
I often want to program in an event driven way, but classic implementations of the observer pattern often pose an ownership challenge, and they only get more difficult once multiple threads are ...
2
votes
1
answer
237
views
UIView position updates based on device motion via RxSwift
I've created a simple function to work as a level, where the dot on screen is centered when the device is completely flat. It changes position based on device orientation. I use RxSwift to update the ...
0
votes
1
answer
843
views
Refactor multiple if condition in JavaScript/TypeScript
I want to refactor this code but am wondering how I should start it. I'm not sure this code is totally against clean code or not. I'm thinking to use RxJS or a JavaScript builtin method. I'd like to ...
1
vote
2
answers
114
views
how to destructure this.props react js
I'm trying to create a component that receives an array, this component is going to show a list with props data
...
-2
votes
1
answer
408
views
How generate a random pojo value using reactor.core.publisher.Flux and reactor.util.function.Tuples [closed]
Firstly, take in account is my first question here in CodeReview. Any purpose misuderstanding will be highly appreciated if orientaded.
Scenario: I want to answer randomly a pojo (json with two ...
5
votes
1
answer
59
views
Merging client names into orders using RxJS
I have an API which I can't modify. I have to use data as it is.
I want to join data from two separate requests where the second request is based on data from the first one.
I have a working ...
3
votes
0
answers
830
views
Endless scroll in kotlin (android)
This is the code of my function to endless scrolling. It's a good practice to bind new disposable in onscroll listener? What do you think about my code?
...
7
votes
1
answer
6k
views
Getting serial port list
Needed to get a local serial port list. System.IO.Ports.SerialPort.GetPortNames() returns names but not the descriptions like you can see in Device Manager: ...
1
vote
2
answers
2k
views
Observable implementation
I have implemented a simple Observable class. I think that there is still room for improvement. Especially the fact that I have separate array to observe results ...
3
votes
0
answers
3k
views
Implementation of reactive file write from InputStream
I want to implement reactive write to file.
In low level, it uses NIO and Futures.
After reading this section
I created this code but maybe there's more clean or less code solution.
Thanks.
...
2
votes
0
answers
2k
views
Polling implemented using reactive framework (project reactor)
I have a use case where I need to poll a certain service till all data has arrived. The service accepts a list of ids and responds with data corresponding to these ids. Data is asynchronously made ...