لا توجد نتائج لـ "#rxnet"

I'm exploring bi-directional real-time streaming with #SignalR and realizing that their API exposes a beautiful StreamAsync that can both return an IAsyncEnumerable and accept one as well... 🤯 Mixed in a bit of #RxNET and timers for debounce just to show off 🤓


I've been talking about #rxnet since 2009. Nice to see it continuing to get love.


#dotnet #rxnet #reactivex folks, make sure you don't miss this book. Huge thanks to the authors!

📢It's HERE! Introduction to Rx .NET 2nd Edition @idg10 has updated @LeeRyanCampbell 2010 book to Rx v6.0, .NET 8.0 & modern cloud native use cases such as IoT & real-time stream data processing. Available for FREE as PDF, EPUB, on GitHub and Online: introtorx.com

HowardvRooijen's tweet image. 📢It's HERE! 

Introduction to Rx .NET 2nd Edition

@idg10 has updated @LeeRyanCampbell 2010 book to Rx v6.0, .NET 8.0 & modern cloud native use cases such as IoT & real-time stream data processing.

Available for FREE as PDF, EPUB, on GitHub and Online:

introtorx.com


Many thanks @HowardvRooijen for that! #reactivex #rxnet

I've taken our archives of the Rx .NET Workshop (2011) videos that were originally hosted on Channel9, cleaned them up and put them onto our YouTube Channel: youtube.com/playlist?list=…



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

noseratio's tweet image. 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

This also very closely resembles BehaviorSubject from #rxnet. I've been using a slightly customized version, DistinctSubject (emits when the value changes). It covers 99% of my state management needs. I really don't miss INotifyPropertyChanged at all + I have all the Rx Linq.


With #RxNET, it really grew on me how easy it is to use IEnumerable<IDisposable> state machine methods + CompositeDisposable to mange complex, often nested subscriptions, e.g.:

noseratio's tweet image. With #RxNET, it really grew on me how easy it is to use IEnumerable&amp;lt;IDisposable&amp;gt; state machine methods + CompositeDisposable to mange complex, often nested subscriptions, e.g.:
noseratio's tweet image. With #RxNET, it really grew on me how easy it is to use IEnumerable&amp;lt;IDisposable&amp;gt; state machine methods + CompositeDisposable to mange complex, often nested subscriptions, e.g.:

Got some answers, folks who like #reactivex puzzles might be interested: stackoverflow.com/questions/7400… #dotnet #rxnet

#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?

noseratio's tweet image. #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?


#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?

noseratio's tweet image. #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?

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.


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

noseratio's tweet image. As to dealing with exceptions from IObserver&apos;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
noseratio's tweet image. As to dealing with exceptions from IObserver&apos;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

For example, what if OnNext throws below? This will terminate the Producer and send a wrong OnError notification to other observers. This behavior is definitely not what we want, and it's against #reactivex guidelines, too. 👇

noseratio's tweet image. For example, what if OnNext throws below? This will terminate the Producer and send a wrong OnError notification to other observers. 

This behavior is definitely not what we want, and it&apos;s against #reactivex guidelines, too. 👇


Jay is Kinected - fish follows the hand's movements. #Kinect #RxNet

chribben's tweet image. Jay is Kinected - fish follows the hand&apos;s movements. #Kinect #RxNet

Full house running another Practical Rx training course. #RxNET @ReactiveX

LeeRyanCampbell's tweet image. Full house running another Practical Rx training course. #RxNET @ReactiveX

Want to learn reactive programming in @dotnet? These are 2 fantastic books to get you going by @tamir_dresher and @kent_boogaart. Both very well written and lots of detail. @ReactiveX @ReactiveXUI #rx #RxNet

cacchiom's tweet image. Want to learn reactive programming in @dotnet? These are 2 fantastic books to get you going by @tamir_dresher and @kent_boogaart. Both very well written and lots of detail.  @ReactiveX @ReactiveXUI #rx #RxNet

So cool to finally meet @shiftkey at #DDDPerth and thank him for his contribution to #RxNET and @ReactiveX

LeeRyanCampbell's tweet image. So cool to finally meet @shiftkey at #DDDPerth and thank him for his contribution to #RxNET and @ReactiveX

Inhouse Friday tech talks with @graefoster and the guy who taught me LINQ and #RxNet

LeeRyanCampbell's tweet image. Inhouse Friday tech talks with @graefoster and the guy who taught me LINQ and #RxNet

7/ And System.Reactive on #unity3d seemingly works! Just had to add a few libraries. #rxnet #dotnet

shanecelis's tweet image. 7/ And System.Reactive on #unity3d seemingly works! Just had to add a few libraries.

#rxnet #dotnet
shanecelis's tweet image. 7/ And System.Reactive on #unity3d seemingly works! Just had to add a few libraries.

#rxnet #dotnet

Want a picture preview of my #RxNet In Action talk later today @codecampnyc, here you go:

jimwooley's tweet image. Want a picture preview of my #RxNet In Action talk later today @codecampnyc, here you go:

Check out my book about #RxNet - High level #async programming with #Rx - git.io/vD8d3 - @ReactiveX @dotnet @windowsdev

petroemil's tweet image. Check out my book about #RxNet - High level #async programming with #Rx - git.io/vD8d3 - @ReactiveX @dotnet @windowsdev

Enjoying the beautiful weather while working on a #UWP project template with #ReactiveUI. I call it ReactiveUI-ifiedUwpTemplateStudioProject. #rxnet

GameConstructor's tweet image. Enjoying the beautiful weather while working on a #UWP project template with #ReactiveUI. I call it ReactiveUI-ifiedUwpTemplateStudioProject. #rxnet

Half off new MEAP! #Reactive Extensions in Action. Use code dotd072415tw at conta.cc/1foQxhn #rx #rxnet

ManningBooks's tweet image. Half off new MEAP! #Reactive Extensions in Action. Use code dotd072415tw at conta.cc/1foQxhn #rx #rxnet

Deal of the Day May 4: Rx.NET in Action! Use code dotd050417tw at bit.ly/2p7ROz5 @tamir_dresher #rxnet #dotnet #rx

ManningBooks's tweet image. Deal of the Day May 4: Rx.NET in Action! Use code dotd050417tw at bit.ly/2p7ROz5 @tamir_dresher #rxnet #dotnet #rx

Playing around with #vuejs and SignalR on #aspnetcore. The streaming feature with IObservable support is pretty cool. #RxNET Lives!!

cecilphillip's tweet image. Playing around with #vuejs and SignalR on #aspnetcore. The streaming feature with IObservable support is pretty cool.

#RxNET Lives!!

With #RxNET, it really grew on me how easy it is to use IEnumerable<IDisposable> state machine methods + CompositeDisposable to mange complex, often nested subscriptions, e.g.:

noseratio's tweet image. With #RxNET, it really grew on me how easy it is to use IEnumerable&amp;lt;IDisposable&amp;gt; state machine methods + CompositeDisposable to mange complex, often nested subscriptions, e.g.:
noseratio's tweet image. With #RxNET, it really grew on me how easy it is to use IEnumerable&amp;lt;IDisposable&amp;gt; state machine methods + CompositeDisposable to mange complex, often nested subscriptions, e.g.:

#RxNET in Action - Final PDF eBook Edition available now! pBook available Apr 27 manning.com/books/rx-dot-n… @tamir_dresher #dotnet #rx #csharp

ManningBooks's tweet image. #RxNET in Action - Final PDF eBook Edition available now! pBook available Apr 27 manning.com/books/rx-dot-n… @tamir_dresher #dotnet #rx #csharp

Loading...

Something went wrong.


Something went wrong.


United States Trends