C# Advanced Async - Getting progress reports, cancelling tasks, and more

  Рет қаралды 297,753

IAmTimCorey

IAmTimCorey

Күн бұрын

Пікірлер: 776
@hardgrafter2787
@hardgrafter2787 5 жыл бұрын
I am a professional WPF C# developer & find your resources by far superior to Pluralsight content. Very talented teacher, thank you so much.
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
You are most welcome.
@jamiedewitz6832
@jamiedewitz6832 3 жыл бұрын
Either this [advanced] concept is really simple or was it just explained in such a way that it seems very easy to use..... I'm really glad I found these videos. This concept is a game changer, for sure. I wish I would've found these years ago!
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
Glad it was helpful!
@GuildOfCalamity
@GuildOfCalamity 3 жыл бұрын
Great demo! NOTE: You'll want to create a new cancel token before calling the async because on the next try the token will still be canceled. CancellationTokenSource cts = null; // At declaration (top of class) ... // In the executeAsync_Click() method... cts = new CancellationTokenSource(); var results = await DemoMethods.RunDownloadAsync(progress, cts.Token); PrintResults(results); ... // In the cancelOperation_Click() method... if (cts != null) cts.Cancel();
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thanks for sharing
@popinpavel8589
@popinpavel8589 3 жыл бұрын
Exactly what i was looking for, thanks!!
@NOCKSCITNEY
@NOCKSCITNEY 3 жыл бұрын
Was about to report the same thing, but found your comment 👍
@pauldechampignon2287
@pauldechampignon2287 4 жыл бұрын
Thank you Tim. You are one of the very few video creators with real passion for what you do and for teaching people. Your videos are done in perfect pace, you stop at important parts and explain them. Simply amazing!
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
I appreciate that!
@zeroskill990
@zeroskill990 4 жыл бұрын
Tim, if it weren't for you, I'd still be messing around with a console application that does nothing useful. Your videos are one of the greatest learning sources I've ever come across. You've taught me many essential things in C#. Great work. Other resources are nothing compared to what you provide (even for free!)
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
I appreciate the kind words.
@jeremyrooks9784
@jeremyrooks9784 3 жыл бұрын
💯
@jebwatson
@jebwatson 4 жыл бұрын
Honestly the best, most concise summary of a topic I find myself struggling with constantly. Excellent resource for software professionals and amateurs alike. Well done!
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Thanks!
@SelmanErhanekici
@SelmanErhanekici 4 жыл бұрын
This was a great video. Understandable and informative. Thanks a lot. The hard thing is not how hard the problem is. The real problem is to explain it simply and easily, no matter how difficult it is. It's more difficult to simplify and make it understandable. This is what you doing your videos.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Thank you!
@harishpatil5621
@harishpatil5621 3 жыл бұрын
I was very confused between synchronous and asynchronous programming & how to use async/await keywords. This video cleared my all confusion. Thanks you so much.
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
Wonderful!
@miraichampion3366
@miraichampion3366 Жыл бұрын
Everytime my lead dev asks me to do smthing confusing im like... "If theres a TimCorey for it im good". Today was cancelation tokens and logging. Cheers for saving my bacon again dude.
@IAmTimCorey
@IAmTimCorey Жыл бұрын
Awesome! Thanks for sharing!
@yingxing4134
@yingxing4134 3 жыл бұрын
Finally a tutorial that doesn't assume the viewers are experts already, I am able to follow and understand completely! Awesome work Tim, thank you!
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
You are welcome.
@jackbrabham
@jackbrabham 2 жыл бұрын
I was having an awful time trying to make a bunch of legacy code I can't really change to run faster. Found your first video on async/await and managed to shave off a ridiculous amount of time. You are a life saver, thank you so much for your help!
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
Excellent!
@kopilkaiser8991
@kopilkaiser8991 Жыл бұрын
You are the best teacher to teach C# programming tutorials. I really understand your concepts in-depth as you explain with keeping everything in mind. Not too vague, or not too complex. Just enough spices to make the recipe (knowledge) tasty to consume! Aromatic and delightful. Please keep up the hard work. I pray for your wellbeing and may you be blessed with more success. InshaAllah 🤲❤. Lots of love from me brother.
@IAmTimCorey
@IAmTimCorey Жыл бұрын
Thank you!
@tosinakinyemi3948
@tosinakinyemi3948 3 жыл бұрын
Both videos on Async / Await are awesome, from scratch to the advance with a visual touch. Wow you just open up my understanding of this topic. Bless you Tim Corey.
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
Great!
@parapadirapa
@parapadirapa 3 жыл бұрын
I cannot understate how much I love when Tim glues together 3 or 4 words in each phrase.. Saves me so much time =)
@AlecPaulKISS
@AlecPaulKISS 5 жыл бұрын
Been struggling with creating a ASYNC fileDownloaded, but succeeded using CLASSES without using any threads, it works but the code was like spagetti, overlaps and overloads etc. So decided to revisit the code from last year and try to enhance my knowledge and using threads and tasks.. it worked to a certain point using Delegates and SafeData methods and invokes etc.. but still was not 100% something to be proud about, until I ran across your videos TIM.. thank you for the examples and level of detail and the download site.. AMAZING work.. and very much appreciated.
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Awesome! I'm glad it helped out.
@oritnaftali4542
@oritnaftali4542 2 жыл бұрын
Tim, You are a great teacher! You explain complicated stuff in a clear and comprehensible way. I lean a lot from all your videos. Thank you!
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
You're very welcome!
@rwpage89
@rwpage89 4 жыл бұрын
Man I can’t believe how much I learned from your videos. I’ve gotten back into C# development for my job which involves a lot of automation. My tools are internal to our team, just basically making tools to automate a lot of mundane tasks that eat up our time. Can’t thank you enough for your help, you most definitely earned my sub
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
You are most welcome. Thanks for watching.
@krishravela
@krishravela 3 жыл бұрын
Hey Tim, I just finished Advanced Async course and to be honest, I learned so many things even though I have been working on c# for the last 8+ years . Keep up the good work
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
I am glad it was so helpful.
@marcelolopes1347
@marcelolopes1347 4 жыл бұрын
Your videos are pure gold. Superb explanation, excellent didactics, and execution sequence. Thank you so much.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Thank you!
@abhishekjadhav9289
@abhishekjadhav9289 Жыл бұрын
Great video again. It helped me clear in my mind the actual difference between Task.WhenAll and Parallel.ForEach. Hats off to you Tim. Thanks for breaking down tough things in easy to understand manner for us.
@IAmTimCorey
@IAmTimCorey Жыл бұрын
You are welcome.
@citypavement
@citypavement 2 жыл бұрын
I'm watching the end of the progress bar part thinking "Wow, I can't wait to do this. I will have to re-watch this and follow along but I should be able to figure it out if I try." Tim Corey: 24:48 Seriously, though. This is explained extremely well. Thank you!
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
You are welcome.
@antoniokristicevic2045
@antoniokristicevic2045 3 жыл бұрын
Hey Tim, great video. Correct me if I'm wrong, but I think calling Add method on List inside Parallel.ForEach can lead to thread related issues as List is not thread-safe (according to MS only public static members are thread-safe). It's necessary to employ synchronization techniques or use a concurrent collection to avoid any problems.
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
Yep, that was a mistake on my part. Good catch.
@RobertoLion
@RobertoLion 2 жыл бұрын
@@IAmTimCorey Would you please make a video explaining this and link it here?
@RemixProf
@RemixProf 6 жыл бұрын
When I see Tim upload a C# video world gets beautiful for an hour :)
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
I'm glad. Hopefully there will be many beautiful hours to come.
@muxahx3096
@muxahx3096 3 жыл бұрын
Thanks for the video! 1) suspend exceptions by using try catch is questionable practice 2) i would not use throw an exception to cancel the operation 3) if you want to cancel the operation do it in the beginning of the loop is better practice in this case due to hevy lifting is in web call
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
You are welcome.
@tosinakinyemi3948
@tosinakinyemi3948 3 жыл бұрын
The way Tim taught us in the video is the canonical way and the .NET recommended way. (token.ThrowIfCancellationRequested). Surprised!
@dc03yo
@dc03yo 4 ай бұрын
Another outstanding presentation. Thank you for the methodic progression as you introduce more complex topics. You really make C# simple. I appreciate the section on token cancellation source, the Parallel.foreach overview, and the use of async to keep the UI responsive. The Progress logic was also helpful and a little cleaner than my own.
@IAmTimCorey
@IAmTimCorey 4 ай бұрын
I am glad it was helpful.
@Dame4Lyf3
@Dame4Lyf3 6 жыл бұрын
Tim, sir, you're keeping me employed. It's sometimes hard finding these types of content and (especially C#) you just provide when needed.
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
Awesome! I'm glad you are getting a real benefit out of the content.
@vinuhosanagar1
@vinuhosanagar1 6 жыл бұрын
Thank you Sir. I was remembering you for all value you have been giving. And when I opened KZbin got your notification.
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
You are welcome. I'm glad I'm providing value.
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
Hey, did you delete your last comment about your comments being deleted? I saw it but didn't respond at first because I wanted to look into it. When I went to respond, it was gone.
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
By the way, email me about this please instead of replying. I have a hard time finding deep replies. Email is tim (at) iamtimcorey (dot) com
@TheTonyBTube
@TheTonyBTube 3 жыл бұрын
Tim, it was your approach to teaching, your competency and your conciseness that made it a pleasure to subscribe to your Annual Pass. I look forward to learning more. Well done!
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
Thank you! I am glad you are finding my content so valuable.
@ВасильЗауличний-у2е
@ВасильЗауличний-у2е Жыл бұрын
Just awesome! I like your pace AND the way you highlight those small details which makes the difference in a real-world intuitive app! Thanks, Tim!
@IAmTimCorey
@IAmTimCorey Жыл бұрын
You are welcome.
@MichaelJordan-jv6ic
@MichaelJordan-jv6ic 4 жыл бұрын
I very much appreciate your teaching skill. I might note that with the examples of IProgress that I've seen to this point, there is usually a null check involved in calling Report(). I'm not entirely sure of the reason at this point, but thought this might be useful.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
The reason is in case the reference has been destroyed or was null to begin with.
@ajonescouk
@ajonescouk 4 жыл бұрын
Thanks - I learnt a lot for this. One slight thing - if the cancellation was checked *after* progress is reported it would be a little more accurate. When you cancel at 50%, the code has actually completed 60% of the downloads, but the reporting callback hadn’t been called. I know it doesn’t matter for this example, but there could be instances where that information is useful.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
True. Thanks for pointing it out.
@waynemurphy7239
@waynemurphy7239 5 жыл бұрын
I concur with "InDeep Software". I've been programming for 40 years and this is the most effective approach I've come across. I've been using PluralSight lately, which can be good. This is better ... Thank you!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
I appreciate the kind words.
@RalfsBalodis
@RalfsBalodis 4 жыл бұрын
0:00 - Intro 0:55 - Demo application walk through 5:05 - Code behind demo application 12:00 - Implementing a progress report for tasks to be done 23:11 - Progress report recap 25:02 - Canceling tasks/methods: Cancellation tokens 33:58 - Canceling recap 35:34 - Parallel synchronous operation : Parallel.ForEach 41:38 - Parallel asynchronous operation 46:56 - Conclusions 50:26 - Summary
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Thanks! I added it to the description.
@rolandwatz7797
@rolandwatz7797 3 жыл бұрын
Thank you very much again. Once again a great video Tim! You are a natural born teacher! Best regards from Germany and God bless you.
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
You are most welcome. Thanks for watching.
@AlexWardi
@AlexWardi 5 жыл бұрын
Learned quite a few things from watching this video and its predecessor. Thanks, Tim!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
You are welcome.
@mailtovinodrajput
@mailtovinodrajput 6 жыл бұрын
Excellent demo of Async - Parallel -Progress ever been seen !!
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
I appreciate the kind words.
@ilhan5515
@ilhan5515 4 жыл бұрын
This is so much better than the async/await course on pluralsight.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Thanks!
@jensburgstaller2685
@jensburgstaller2685 4 жыл бұрын
Hey, i love you videos very well explained. To make them even better you could seperate them by topics and add a playlist like: 1. Progress Reports 2.cancelling tasks 3.more advanced async in playlist Advanced async. The reason is i'm only interested in cancelling tasks for today and i have no idea where to start in the video. 1 hour videos scare people :).
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Thanks for the suggestion. The biggest thing is getting the time to do that. If you come up with some good time codes, I'll add them to the description.
@marvinalone
@marvinalone 4 ай бұрын
1) 39:18 List.Add in Parallel.ForEach is not thread-safe 2) Parallel.ForEach is multi-threading, not "normal"
@IAmTimCorey
@IAmTimCorey 4 ай бұрын
Yep, I should have used a ConcurrentBag instead.
@dnwheeler
@dnwheeler 2 жыл бұрын
Just a few comments: 1) the CancelationTokenSource cannot be "reset" and a new one must be created for each use. 2) Parallel.ForEach uses multiple threads for each "chunk" of work, whereas the Task.WaitAll() method doesn't use threads. 3) In the Parallel.ForEach case, you might be able to use a ContinueWith to add the common progress handling as each download finishes (I haven't tested this, and it probably isn't a recommended technique).
@CaracalCaracal
@CaracalCaracal 3 жыл бұрын
Cleary and great explanation... both videos show me a big diff between normal method and with async await method. luv the way u explain it
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
Glad it was helpful!
@EngDuraid
@EngDuraid 5 жыл бұрын
You are the best as i always say, thank you very much Mr. Corey
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Thank you!
@stevesynan3910
@stevesynan3910 5 жыл бұрын
Awesome videos man! Keep it up! I've been been programming for years but certain concepts I tend to avoid, like asynchronous programming. I really like the way you break everything down into simple digestible steps and don't spend hours digging into historical context that is irrelevant for today, you get right to the nuts and bolts. I have already sub'd but I'd do it again if I could! Thanks for spreading the knowledge!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
I'm glad you are enjoying them and getting value out of them.
@vibhoregupta1742
@vibhoregupta1742 3 жыл бұрын
fantastic tutorial Tim. really loved the detail you covered in the video. Thanks🙏
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thank you for continuing your learning with Tim.
@ShyamSundar055
@ShyamSundar055 3 жыл бұрын
It completely opened my mind. Thanks Tim for your amazing explanation.
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
You are welcome.
@F0YF0YT0S
@F0YF0YT0S 6 жыл бұрын
Once again: perfection in explanation, presentation and execution. Thank you Tim :)
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
You are welcome.
@danj8404
@danj8404 7 ай бұрын
Thank you for these videos. I really appreciate that you point out what comes from the .NET framework or built into to C#.
@IAmTimCorey
@IAmTimCorey 7 ай бұрын
You are welcome.
@arugollu
@arugollu 6 жыл бұрын
I liked the video and able to follow and try the concepts with an example on my laptop. The concept is clear. Thanks a lot Tim.
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
You are most welcome. Thanks for watching.
@yaroslavkostetskiy3665
@yaroslavkostetskiy3665 2 жыл бұрын
Tim all materials you've posted are awesome! Good luck and affluent numbers of students to you!
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
Thank you.
@MrHonest10000
@MrHonest10000 4 жыл бұрын
Excellent demo and explanation. Much appreciated Tim.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Glad it was helpful!
@manju_narasimha
@manju_narasimha 3 жыл бұрын
Thank you so much for this video Tim! Never thought anybody cud explain me async operations so easily!
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thanks for trusting Tim for your training.
@aimanemeish3482
@aimanemeish3482 3 жыл бұрын
Dear tim, Again one million thx. as always, it's just very helpfull and explained in a so simple way that even at nearly at 50 years (in my cas) we just feel again as at university.
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
You're very welcome!
@ramialbadri3114
@ramialbadri3114 4 жыл бұрын
Your videos is really helping me preparing for my new C# job, since I come from Java world. Keep it up man :)
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Glad I could help!
@jegtugado3743
@jegtugado3743 4 жыл бұрын
This series is very helpful. Though I am familiar with async await in .net, I wasn't sure how to get better performance with it. Well done sir. 💯
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Thank you!
@19gauravmittal91
@19gauravmittal91 4 жыл бұрын
Thanks Tim for make this easy to understand. I am looking for multithreading from you.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Glad to help
@ArbazAbid
@ArbazAbid 4 жыл бұрын
Thank you for your videos, I have learned a lot about advance async and await methods. God bless you Tim.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
You are most welcome. Thanks for watching.
@romansidler
@romansidler Жыл бұрын
Thanks Tim for this great video tutorial. This was just helping to point myself into the right direction implementing some code for a massive parallel backup job.
@IAmTimCorey
@IAmTimCorey Жыл бұрын
Excellent!
@pirouz_roshanzamir
@pirouz_roshanzamir 2 жыл бұрын
Sir you have made my life easier beyond any thank you
@AngrejSingh-uc7uw
@AngrejSingh-uc7uw 4 жыл бұрын
Brilliant stuff mate. I was struggling with this for a while, cheers for clearing it up.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Glad it helped
@mohammedkhalil7051
@mohammedkhalil7051 3 жыл бұрын
I hit like button before I watch the video case I'm sure it will be useful and enjoining. Beside that, my native language is Arabic and I understand the clear and simple English you use in videos. Thanks Tim.
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
You are most welcome. Thanks for watching.
@mortendegn-pedersen3198
@mortendegn-pedersen3198 3 жыл бұрын
prob the best programming video ive seen
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thanks for sharing that.
@rickdeckard1075
@rickdeckard1075 3 жыл бұрын
except 90% of async is the weird error/exception handling required
@belmiris1371
@belmiris1371 4 жыл бұрын
This video and your Basic Async / Await video were very helpful, thank you. I would like to see a video on how and where exceptions are best handled. Thanks!
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
I will add it to the list. Thanks for the suggestion.
@MrMarsburgToYou
@MrMarsburgToYou 3 жыл бұрын
Another excellent presentation! Thank you Tim!
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thanks for investing your time with Tim
@0i0l0o
@0i0l0o 2 жыл бұрын
Corey, maybe exploring ValueTask and it's use cases would be good continuation of these async series.
@srinunosina40
@srinunosina40 5 жыл бұрын
Nice Article on Async. Thanks a lot for all your work! It's amazing!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
You are welcome.
@Lomunist
@Lomunist 5 жыл бұрын
Hey, great video, as always! You're a great teacher. I ran into a problem when I re-ran the Async method after cancelling once. I think I found this issue; the CancellationTokenSource property IsCancellationRequested is set to true, and is not reset anymore. This causes the further iterations to cancel automatically. I solved it by adding a finally block, disposing of the cts and setting it to a new instance. Since IsCancellationRequested a read-only, I could not reset it. I also added the cancel token to the AsyncV2, but it crashed form an AggregateException; adding an additional catch block solved it.
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
I'm glad you figured it out.
@Lomunist
@Lomunist 5 жыл бұрын
@@IAmTimCorey I could figure it all out from what you taught in the tutorial; like an easter-egg challenge. Really fun, thanks!
@vigneshchandrasekar328
@vigneshchandrasekar328 2 жыл бұрын
This is by far the best video on async/ await in c# and the content beats any of the paid video sources out there. I have a question is there a way to pause-resume operation instead of just canceling it?
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
You would need to build that into the called method. It isn't a standard feature.
@timyoung6495
@timyoung6495 2 жыл бұрын
This is a really excellent video. I would love to see something similar for VSTO with C# for Excel. I'm finding it really hard to get good and easy to follow best practice info on how to show long running tasks in forms in with a responsive progressbar. But a series on building Excel add-ins in a best practice manner with VSTO in general would also be wonderful. Thanks for the awesome content!
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
Thanks for the suggestion. Please add it to the list on the suggestion site so others can vote on it as well: suggestions.iamtimcorey.com/
@maximeumbra7235
@maximeumbra7235 2 жыл бұрын
You can also build an average metric and predict your progress. Say in this example average the time a few times running the method for a given byte size and you can remap with the expected value.
@DarkSolidity
@DarkSolidity 2 жыл бұрын
I’ve got a pretty large code base for Excel automation in C#, if you still need help. What are you trying to do?
@sbeasley1120
@sbeasley1120 5 жыл бұрын
At 19:00 min. Integers don’t get rounded to the nearest whole number. They just truncate. Always rounding down
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Yep, I misspoke. Thanks for correcting it.
@diskokaktus
@diskokaktus 3 жыл бұрын
Thanks A LOT man, you really did better than my whole university program
@IAmTimCorey
@IAmTimCorey 3 жыл бұрын
I’m glad it was helpful.
@nguyenkhoa1043
@nguyenkhoa1043 5 жыл бұрын
Great work! Amazing Parallel steps up my journey!!!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Thanks!
@89GDC
@89GDC 4 жыл бұрын
these tutorials have helped me to understand a lot. Thanks Tim!
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
My pleasure!
@b_l_666
@b_l_666 4 жыл бұрын
Hi Tim, great content. Would love to see more. I have a question about the methods where you use the Parallel.ForEach. I noticed that it stores the output in a List versus a ConcurrentBag. I thought List where not async safe. Can you explain?
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
A boneheaded mistake. Yep, that's about it. I should have used a thread-safe set instead of List. Good catch.
@kongwengseng3735
@kongwengseng3735 4 жыл бұрын
Wow, you are a great mentor. Thanks.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
My pleasure!
@Efficienthacks
@Efficienthacks 5 жыл бұрын
excellent tutorial - i like the way you built it up in increments
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Thank you!
@alvaronavasmodrono8057
@alvaronavasmodrono8057 2 жыл бұрын
Really neat! was going crazy trying to make the BackgroundWorker class run, and this is so much better, specially when explained like this. Thanks!
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
I am glad it was so helpful.
@artuskoenich8377
@artuskoenich8377 2 жыл бұрын
@@IAmTimCorey 4 years later this is still a valid and very good explanation. Actually with these 2 videos I was able to really understand what is "under the hood" of the Backgroundworker. Would you nowadays recommend to use the BGW or use a selfmade async method with progress report and cancellation? (provided both functionalities are needed)?
@jayschwarz4365
@jayschwarz4365 Жыл бұрын
Really great explanation of a fairly complex topic.
@IAmTimCorey
@IAmTimCorey Жыл бұрын
Thank you!
@shadizidan7295
@shadizidan7295 3 жыл бұрын
Amazing . Love you Tim . You are really making it simple
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thanks for trusting Tim and looking to him for assistance
@nullentrophy
@nullentrophy 3 жыл бұрын
Hi Tim. Actually I am a bit surprised that you didn't include Multithreading vs Async. I confuse those topics a little. It would be nice to learn them from you. Thanks for awesome content!
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thanks for the suggestion, I added it to the list.
@Lvl9chao
@Lvl9chao 5 жыл бұрын
really learned a lot from this async/await series!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Excellent!
@dormelamed5974
@dormelamed5974 4 жыл бұрын
Tim My man! Your videos are great! keep up with this amazing work! your explanations skills are priceless!!!
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Glad you like them!
@BlazorBill
@BlazorBill 4 жыл бұрын
Thank you Tim. Very helpful. Made a significant impact on an app I'm building.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Excellent!
@oleksiipotapov9667
@oleksiipotapov9667 5 жыл бұрын
Thanks a lot for all your work! It's amazing!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
You are welcome.
@manjunathpn2393
@manjunathpn2393 4 жыл бұрын
Thanks Tim Corey... Its a great learning for me... Thanks once again..
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
You are welcome.
@PotatoePet
@PotatoePet 4 жыл бұрын
You have a race condition in RunDownloadParallelAsyncV2. As all files are being downloaded at the same time it is possible for the Tasks to finish at the same time and accessing output.Add at the exact same time. Best solution is probably to use a ConcurrentQueue and Dequeue it in in a loop in the log printing part of code. Other way is to introduce a lock on the list.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Yep, I should have used a better list.
@ReSpawNnL
@ReSpawNnL 3 жыл бұрын
Very insightful, even in 2021! I got the basics down but I am still wondering why the ProgressChanged += ReportProgress doesn't print out 10 separate times. First 1, then 2, then 3, then 4 and so. I'd expect the Text window to be filled with 55 download messages... *edit:* I looked back and saw each time the PrintResults is called the entire text box is reset. A bit of a nasty solution if you ask me, but to each their own. This explains my unexpected result.
@jacintomichaelpalaroan2795
@jacintomichaelpalaroan2795 2 жыл бұрын
Appreciate the detailed discussion. 5 stars!
@IAmTimCorey
@IAmTimCorey 2 жыл бұрын
Thank you!
@DanFlakes
@DanFlakes 3 жыл бұрын
Thanks for the in depth video!
@tomthelestaff-iamtimcorey7597
@tomthelestaff-iamtimcorey7597 3 жыл бұрын
Thanks for trusting Tim
@therealrolanddeschain9253
@therealrolanddeschain9253 6 жыл бұрын
Hmm, for reports back from the task I have used Dispatcher.Invoke()/Dispatcher.BeginInvoke() in the past. What are the differences to using IProgress.Report(), what is better practice and why? Again, very informative Videos. As a Beginner-Immediate Programmer I find it difficult to find tutorials which do not focus either on very specialized stuff or on the very basics. Your content fits my leaning progress perfectly!
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
Your way is using threading directly. Async isn't necessarily multi-threading (but can be - you just don't know or care). I believe BeginInvoke/Invoke will also crash your app on unhandled exceptions where Async will not.
@georgekerwood9100
@georgekerwood9100 4 жыл бұрын
Another great, exhaustive but clear video. Thank you! You, Sir, have earned a subscribe :)
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
You are most welcome. Thanks for watching.
@ronaldmackee3401
@ronaldmackee3401 5 жыл бұрын
To be accurate, running tasks in a loop and doing Task.WhenAll is not really parallelism, but more like multi-threading. Parallel.ForEach will give you true parallelism, however, it blocks, albeit for a very short time. You can still use it within Task.Run and get the best of both worlds though. Also, the latter is more efficient when creating tasks when looping over a big number of items.
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Parallel.ForEach is effectively the same as kicking off tasks and then waiting for them all to finish. It is slightly more efficient I believe, but it is close. The reason being is that Parallel.ForEach doesn't actually run things in parallel either. It "Executes a foreach operation in which iterations may run in parallel" (from Microsoft's documentation). It is essentially doing what I was doing. It creates tasks and then runs them all, which doesn't really run them all but uses threading to identify how many can run at the same time and then queues them up in as many parallel tracks as possible (just like my implementation does).
@AnuragSunmugam2201
@AnuragSunmugam2201 5 жыл бұрын
very well covered! you make everything so understandable. thanks man
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
You are welcome.
@XGalatrosX
@XGalatrosX 4 жыл бұрын
Thank you. All of your videos are wonderfull, so many knwoledge perfectly presented (Even with my low English I can understand everything). I am only sad that for financial reality of my country your courses are a bit too expensive :( . I hope that in future you will make another video with pracitical use of the async or talk more about what's inside of this, but I am not sure this will fit to your convention.
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Glad you like them! Noted, and added to the list.
@madhavkshirsagar2466
@madhavkshirsagar2466 3 жыл бұрын
Thanks for showing the gradual improvements you made from basics to advanced! Now I am beginning to understand how async/await is used. I have 2 questions 1. How to include threads in a flow chart. If I had to draw flow chart for this program how would I include threads? 2. Where is the progress.ProgressChanged (from MainWindow.executeAsync_Click()) invoked? I didn't see ProgressChanged ?.Invoke(this, ProgressReportModel); anywhere in the code!
@nenojay6832
@nenojay6832 6 жыл бұрын
love your C# videos a lot
@IAmTimCorey
@IAmTimCorey 6 жыл бұрын
I'm glad.
@alialamdari4375
@alialamdari4375 5 жыл бұрын
Well-explained video. Many thanks Tim.
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
You are welcome.
@shashikantchitalkar4788
@shashikantchitalkar4788 4 жыл бұрын
Great work Tim. Most Appreciated..Thank you..
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
You are welcome.
@mustafabeshr2009
@mustafabeshr2009 4 жыл бұрын
thank you so much ,finally I got what i looking for for months.... thank thank thank you ...
@IAmTimCorey
@IAmTimCorey 4 жыл бұрын
Excellent!
@pitstopkrew
@pitstopkrew 5 жыл бұрын
Clink...... that was the penny finally dropping, great video, thanks!
@IAmTimCorey
@IAmTimCorey 5 жыл бұрын
Awesome!
@10tronic
@10tronic Жыл бұрын
Muchas gracias Tim. Que hermosa explicación!
@IAmTimCorey
@IAmTimCorey Жыл бұрын
You are welcome.
What's New in C# 8.0 - Is There Multi-Inheritance Now?
1:23:33
IAmTimCorey
Рет қаралды 63 М.
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 56 МЛН
How to make calculator by help of HTML, CSS AND JAVASCRIPT.
7:08
Mechanical Engineering drawing
Рет қаралды 4
Settling the Biggest Await Async Debate in .NET
14:47
Nick Chapsas
Рет қаралды 147 М.
That's NOT How Async And Await Works in .NET!
12:25
Codewrinkles
Рет қаралды 26 М.
Back to Basics: Efficient Async and Await - Filip Ekberg - NDC Oslo 2023
1:01:25
Simple C# Data Access with Dapper and SQL - Minimal API Project Part 1
1:14:08
8 await async mistakes that you SHOULD avoid in .NET
21:13
Nick Chapsas
Рет қаралды 315 М.