Introduction to The .NET BackgroundWorker Component
Pluralsight
Course Summary
Keep your UI responsive. The BackgroundWorker component gives us an easy way to keep our UI responsive by moving a long-running process off of the UI thread. We'll explore this, plus other features: progress reporting, cancellation, and error handling. And we'll also see the BackgroundWorker component in conjunction with the MVVM pattern and the Task Parallel Library.
-
+
Course Description
Keep your UI responsive. If we're not careful, a long-running process will cause our application to "lock up". The BackgroundWorker component gives us an easy-to-use solution by moving that long-running process off of our UI thread. We'll see how the BackgroundWorker component can keep our WinForms, WPF, or Silverlight UI responsive and also explore features such as progress reporting, cancellation, and error handling. After that, we'll see how easily the BackgroundWorker component fits in with an application using the Model-View-ViewModel (MVVM) pattern. And finally, we'll compare the BackgroundWorker component to the Task Parallel Library to make sure we're using the right tool for the job.
-
+
Course Syllabus
BackgroundWorker Overview- 38m 45s
—Course Overview 2m 13s
—Why BackgroundWorker? 2m 7s
—What The BackgroundWorker Is 4m 5s
—Freeing The UI 2m 4s
—Demo: WinForms Application 13m 22s
—Demo: WPF Application 8m 31s
—Demo: BackgroundWorker in Code 2m 43s
—Event Review 1 2m 26s
—Summary 1m 14sProgress, Cancellation, and Error Handling- 42m 4s
—Overview 0m 26s
—Progress Reporting 3m 30s
—Demo: Progress Reporting 9m 42s
—Cancellation 2m 48s
—Demo: Cancellation 5m 39s
—Demo: Error Handling 5m 11s
—Event Review 2 4m 22s
—Bonus: Inside The TickerProgress Sample 8m 17s
—Summary 2m 9sBackgroundWorker and MVVM- 19m 3sBackgroundWorker vs. Task- 27m 43s