#rxnet نتائج البحث
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
Deal of the Day May 4: Rx.NET in Action! Use code dotd050417tw at bit.ly/2p7ROz5 @tamir_dresher #rxnet #dotnet #rx
Hey #dotNETby! Don't miss Stas Rivkin @stasrivkin talk on #RxNET and win the RxNET in Action book by @tamirdresher manning.com/books/rx-dot-n…
Playing around with #vuejs and SignalR on #aspnetcore. The streaming feature with IObservable support is pretty cool. #RxNET Lives!!
Rx.NET in Action is in print now! ePub + Kindle: May 15 manning.com/books/rx-dot-n… @tamir_dresher #rxnet #dotnet #rx #csharp
#RxNET in Action - Final PDF eBook Edition available now! pBook available Apr 27 manning.com/books/rx-dot-n… @tamir_dresher #dotnet #rx #csharp
DOTD Oct 19: Half off Rx.NET in Action! Use code dotd101917tw at bit.ly/2xPCqQe #rxnet #dotnet #rx #csharp
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
Deal of the Day Jan 28: Rx.NET in Action! Use code dotd012818tw at goo.gl/w7wRxn @tamir_dresher #rxnet #dotnet #rx #csharp
Last call on DOTD! Save 50% on Rx.NET in Action. Use code dotd101917tw at manning.com/books/rx-dot-n… #rxnet #rx #csharp
"What is Asynchronicity?", an excerpt from Rx.NET in Action bit.ly/2yPfdxA @tamir_dresher #rxnet #dotnet #rx #csharp
Join us on this week's #OnDotNET live as @MichaelStonis comes on to chat about Reactive Extensions patterns for .NET developers youtube.com/watch?v=U-vznh… #RxNET #ReactiveExtensions
Appx C "Testing #Rx Queries and Operators" is new to #RxNET in Action manning.com/books/rx-dot-n… @ManningBooks @tamir_dresher #dotnet #csharp
Good job on the new Build scripts for #RxNET @ReactiveX . They just worked! Repo looking much better than a few weeks ago.
Polling with #RxNET explained RxCookbook github.com/LeeCampbell/Rx… @ReactiveX
Overview of Reactive Extensions (Rx): http://bit.ly/fHEZRv #rxnet
This reactive app was ported from #RxNet to #RxJS in a few days, very smooth transition @mattpodwysocki @headinthebox buff.ly/1mO4PXY
And @idg10 has been continuing his experiment to write a source generator to convert all of #rxnet unit tests into async versions so that we have coverage for the new async rx .net lib (currently in preview). github.com/dotnet/reactiv…
github.com
Add tests to AsyncRx.NET · Issue #1900 · dotnet/reactive
The AsyncRx.NET code is currently experimental. Although it was added to this repository several years ago, it was not published to NuGet until the very recent 6.0.0-alpha.3 release. It is labelled...
This week in #rxnet - @idg10 merged in a PR to start the Interactive Extensions modernisation effort (.NET 5.0 -> .NET 8.0): github.com/dotnet/reactiv…
github.com
Update Ix.NET for .NET 8.0 sdk by idg10 · Pull Request #2135 · dotnet/reactive
Ix.NET had not been updated since the .NET 8.0 SDK shipped, and it turns out that we have: build failures because MSBuild.Sdk.Extras has not been updated since .NET 5.0, and vast numbers of compil...
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 🤓
📢New Post from me! "Observe File System Changes with Reactive Extensions for .NET" #dotnet #rxdotnet #rxnet #reactive endjin.com/blog/2024/05/o…
endjin.com
Observe File System Changes with Reactive Extensions for .NET | endjin
Use Reactive Extensions for .NET to transform FileSystemWatcher events into a powerful and easy-to-use event stream to deal with file system idiosyncrasies.
ICYMI: @endjin content this week: @idg10 short video about the beauty and elegance that lies at the heart of #rxnet endjin.com/what-we-think/…
endjin.com
The Heart of Reactive Extensions for .NET | endjin
Understand the Mathematical foundations that underpin the beauty of Reactive Extensions for .NET.
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
💡Mr. NET has a new gem up his sleeves. @pawelgerr talks about using Reactive Extensions in #DotNet with a very interesting and intuitive use-case. #RxNET thinktecture.com/en/net/backgro…
thinktecture.com
Background Jobs with Rx.NET
Learn how to implement background jobs using reactive extensions (Rx.NET) to stop messing with timers, semaphores, etc.
Rx.NET v6.0 now available endjin.com/blog/2023/05/r… #rxnet #net #reactiveextensions #netframework #systemreactive #rx
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
If you're interested in Async Rx .NET checkout the first alpha release: nuget.org/packages/Syste…
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.:
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?
#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
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. 👇
.@ReactiveX @RxSwiftLang @RxJava #RxJS #RxNET The latest results. Cast your vote at RxDevCon.com/#interested
.@xamarinhq @ReactiveX #RxNET We've confirmed #XamarinMVP @michaelstonis as a speaker! 👏🏼💯🚀 rxdevcon.com/#speakers
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
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
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
Rx.NET in Action is in print now! ePub + Kindle: May 15 manning.com/books/rx-dot-n… @tamir_dresher #rxnet #dotnet #rx #csharp
Hey #dotNETby! Don't miss Stas Rivkin @stasrivkin talk on #RxNET and win the RxNET in Action book by @tamirdresher manning.com/books/rx-dot-n…
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.:
#RxNET in Action - Final PDF eBook Edition available now! pBook available Apr 27 manning.com/books/rx-dot-n… @tamir_dresher #dotnet #rx #csharp
Something went wrong.
Something went wrong.
United States Trends
- 1. #UFC322 195K posts
- 2. Islam 305K posts
- 3. #LingTaoHeungAnniversary 625K posts
- 4. LING BA TAO HEUNG 626K posts
- 5. Morales 39.3K posts
- 6. #byucpl N/A
- 7. Valentina 16.8K posts
- 8. Ilia 8,795 posts
- 9. Prates 37.9K posts
- 10. #GirlPower N/A
- 11. Sark 6,396 posts
- 12. #INDvsSA 17.7K posts
- 13. Khabib 15.5K posts
- 14. Dagestan 4,231 posts
- 15. Georgia 90.1K posts
- 16. Dillon Danis 16K posts
- 17. Topuria 6,956 posts
- 18. Shevchenko 13.6K posts
- 19. Wuhan 11.3K posts
- 20. Weili 8,871 posts