#rxnet
Rx.NET v7.0 is here! This release brings enhanced performance and exciting new features for reactive programming in .NET.#RxNet#dotnet

https://isaacl.dev/g8h
July 24, 2026 at 7:00 PM
#TIL, there's an important difference in #RxNET between Throttle(timeSpan, scheduler) and Throttle(timeSpan).ObserveOn(scheduler).

Below, only Y will be observed with the former, but both X and Y with the latter. Rx is fun! https://stackoverflow.com/a/69877166/1768303

#dotnet...
November 18, 2024 at 6:19 PM
As to dealing with exceptions from IObserver's OnNext/OnError/OnCompleted (and other notification-style callbacks).

I settled on extension method wrappers, which re-throw unhandled exceptions asynchronously using the same semantic as `async void`.

#dotnet #reactivex #rxnet...
November 18, 2024 at 6:18 PM
November 18, 2024 at 4:21 PM
Surprised #rxnet doesn't seem to have a Subject for a one-off cached event, resembling TaskCompletionSource.TrySetResult.

Neither AsyncSubject nor ReplaySubject(bufferSize: 1) does that.
November 18, 2024 at 3:58 PM
#rxnet #dotnet #reactivex
I need to cancel a debounced event A if a different event B occurs. E.g., ignore a pressed keyboard key if a mouse button was clicked.

I can do that with Select/Switch/TakeUntil. Is there a better / standard approach for this (I say) quite common case?
November 18, 2024 at 3:13 PM
Loving Rx.​NET interoperability with Tasks.

Below, I could turn each event subject into a Task and used Task.WhenAny instead of Merge (I still prefer the latter).

In other cases I do filtering, throttling, debouncing on a merged stream of events.

#rxnet #dotnet #reactivex
November 18, 2024 at 2:11 PM
This is the longest, coolest MSDN blog post I have seen in a while - http://bit.ly/zW2uSK #RxNET @mattpodwysocki
November 16, 2024 at 3:32 AM
...and then the #RxNET / #MEF sample shows up with the pony keg and hot chicks - http://www.codeproject.com/KB/miscctrl/RxDemos.aspx @gblock @jmorrill
November 16, 2024 at 3:02 AM
Hmm... could I get #RxNET running in #Unity3d. And could I do anything with it? @higgyb @mattpodwysocki
November 16, 2024 at 3:02 AM
Upgrading to .NET 10 or adopting Rx.NET v7? Ian Griffiths shares demos, migration tips for System.Linq.Async, and how the new UI specific packages cut app size while analyzers help you along.

#csharp #dotnet #rxnet
Rx.NET v7 and Futures On .NET Live talk and demos
bbb.dev
April 9, 2026 at 4:05 PM
🚨 EUVD-2026-25535
📊 n/a
🏢 Linux

📝 In the Linux kernel, the following vulnerability has been resolved:

rxrpc: Fix call removal to use RCU safe deletion

Fix rxrpc call removal from the rxnet->c...

🔗 https://euvd.enisa.europa.eu/vulnerability/EUVD-2026-25535

#cybersecurity #infosec #cve #euvd
April 24, 2026 at 4:09 PM
RT @jimwooley: @dahlbyk The #WP7Dev bits support #RxNET out of the box. See http://msdn.microsoft.com/en-us/library/ff431792(v=VS.92).aspx
Windows previous versions documentation
Find links to Help for older versions of the Windows prod...
msdn.microsoft.com
December 4, 2024 at 11:29 PM
RT @jeremylikness: #MVVM and Reactive Models (using #rxnet) http://bit.ly/e25uFC
MVVM and Reactive Models (Using Reactive Extension Rx.Net)
In this post we will be discussing the possible usage of ...
bit.ly
December 4, 2024 at 8:10 AM