All Questions
Tagged with reactive-programming observer-pattern
2 questions
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 ...
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 ...