Tagged Questions

BackgroundWorker is a helper class in .NET's System.ComponentModel namespace providing a general implementation of the Event-Based Asynchronous Pattern to manage a worker thread, support cooperative cancellation, and report progress.

learn more… | top users | synonyms

32
votes
9answers
12k views

BackgroundWorker vs background Thread

I have a stylistic question about the choice of background thread implementation I should use on a windows form app. Currently I have a BackgroundWorker on a form that has an infinite (while(true)) ...
26
votes
5answers
6k views

Unhandled exceptions in BackgroundWorker

My WinForms app uses a number of BackgroundWorker objects to retrieve information from a database. I'm using BackgroundWorker because it allows the UI to remain unblocked during long-running database ...
19
votes
10answers
5k views

C# Spawn Multiple Threads for work then wait until all finished

just want some advice on "best practice" regarding multi-threading tasks. as an example, we have a C# application that upon startup reads data from various "type" table in our database and stores ...
18
votes
4answers
453 views

How is BackgroundWorker.CancellationPending thread-safe?

The way to cancel a BackgroundWorker's operation is to call BackgroundWorker.CancelAsync(): // RUNNING IN UI THREAD private void cancelButton_Click(object sender, EventArgs e) { ...
16
votes
7answers
5k views

C#: Do I need to dispose a BackgroundWorker created at runtime?

I typically have code like this on a form: private void PerformLongRunningOperation() { BackgroundWorker worker = new BackgroundWorker(); worker.DoWork += delegate { ...
15
votes
7answers
7k views

Alternative to BackgroundWorker that accepts more than one argument?

The BackgroundWorker object allows us to pass a single argument into the DoWorkEventHandler. // setup/init: BackgroundWorker endCallWorker = new BackgroundWorker(); endCallWorker.DoWork += new ...
14
votes
2answers
3k views

Task parallel library replacement for BackgroundWorker?

Does the task parallel library have anything that would be considered a replacement or improvement over the BackgroundWorker class? I have a WinForms application with a wizard-style UI, and it does ...
12
votes
4answers
3k views

Proper way to Dispose of a BackGroundWorker

Would this be a proper way to dispose of a BackGroundWorker? I'm not sure if it is necesary to remove the events before calling .Dispose(). Also is calling .Dispose() inside the RunWorkerCompleted ...
11
votes
3answers
14k views

C# This BackgroundWorker is currently busy and cannot run multiple tasks concurrently

I get this error if I click a button that starts the backgroundworker twice. "This BackgroundWorker is currently busy and cannot run multiple tasks concurrently" How can I avoid this? Thanks
10
votes
5answers
1k views

Cancelling Background Tasks in C#

When my C# application closes it sometimes gets caught in the cleanup routine. Specifically, a background worker is not closing. This is basically how I am attempting to close it: private void ...
10
votes
7answers
7k views

How to stop BackgroundWorker on Form's Closing event?

I have a form that spawns a BackgroundWorker, that should update form's own textbox (on main thread), hence Invoke((Action) (...)); call. If in HandleClosingEvent I just do bgWorker.CancelAsync() then ...
10
votes
3answers
4k views

Unhandled exceptions in BackgroundWorker

I have a small WinForms app that utilizes a BackgroundWorker object to perform a long-running operation. The background operation throws occasional exceptions, typically when somebody has a file open ...
9
votes
3answers
546 views

BackgroundWorker & Timer, reading only new lines of a log file?

My application writes a log file (currently using log4net). I'd like to setup a timer and a background worker to read the log file and print its content into some control in my form, while it's being ...
9
votes
11answers
4k views

Windows Service that runs Periodically

I'm writing a windows service that once started will run every X hours. The process it completes is fairly intensive, so I want to use a background worker. I'm using a Settings file to store both ...
9
votes
4answers
18k views

C# Winform ProgressBar and BackgroundWorker

I have a problem like this : I have a Form named MainForm. I have a long operation to be taken place on this form. While this long operation is going on, I need to show another from named ...
9
votes
4answers
1k views

What's the best way to organize worker processes in Rails?

I frequently have some code that should be run either on a schedule or as a background process with some parameters. The common element is that they are run outside the dispatch process, but need ...
9
votes
8answers
2k views

How to cancel a long-running Database operation?

Currently working with Oracle, but will also need a solution for MS SQL. I have a GUI that allows users to generate SQL that will be executed on the database. This can take a very long time, ...
8
votes
2answers
2k views

WPF BackgroundWorker vs. Dispatcher

In my WPF application I need to do an async-operation then I need to update the GUI. And this thing I have to do many times in different moment with different oparations. I know two ways to do this: ...
8
votes
7answers
9k views

.NET: How to wait correctly until BackgroundWorker completes?

Observe the following piece of code: var handler = GetTheRightHandler(); var bw = new BackgroundWorker(); bw.RunWorkerCompleted += OnAsyncOperationCompleted; bw.DoWork += OnDoWorkLoadChildren; ...
8
votes
3answers
6k views

.NET Web Service & BackgroundWorker threads

I'm trying to do some async stuff in a webservice method. Let say i have the following API call: http://www.mysite.com/api.asmx and the method is called GetProducts(). I this GetProducts methods, i ...
7
votes
3answers
2k views

Long-running computations in node.js

I'm writing a game server in node.js, and some operations involve heavy computation on part of the server. I don't want to stop accepting connections while I run those computations -- how can I run ...
7
votes
2answers
257 views

C# background worker

I have a task running in backgroundworker. on clicking the start button user starts the process and have got one cancel button to cancel the processing. When user clicks on cancel, I would like to ...
7
votes
2answers
2k views

Using .NET BackgroundWorker class in console app

I am relatively new to .NET programming and multithreading in general, and was wondering if it is ok to use .NET provided BackgroundWorker to spawn off worker threads to do some work in a console ...
7
votes
6answers
5k views

How to make BackgroundWorker return an object

I need to make RunWorkerAsync() return a List<FileInfo>. How can I return an object from a background worker?
7
votes
3answers
7k views

C# Background worker setting e.Result in DoWork and getting value back in WorkCompleted

C# 2008 SP1 I am using the background worker If one of the conditions fails I will set e.cancel to true, and assign the string to the e.result. Everything works there. However, when the ...
7
votes
6answers
8k views

How to “kill” background worker completely?

I am writing a windows application that runs a sequence of digital IO actions repeatedly. This sequence of actions starts when the user click a "START" button, and it is done by a background worker ...
6
votes
3answers
1k views

How can I pause a BackgroundWorker? Or something similar

I was using a BackgroundWorker to download some web sites by calling WebClient.DownloadString inside a loop. I wanted the option for the user to cancel in the middle of downloading stuff, so I called ...
6
votes
2answers
758 views

Best practice for multiple long-methods using backgroundworker

I have a form that has many long-methods. My quest is: What is the best practice? Use anonymous method and only one backgroundworker or create an instance of BackgroundWorker to each long-method. ...
6
votes
6answers
6k views

How to update GUI with backgroundworker?

I have spent the whole day trying to make my application use threads but with no luck. I have read much documentation about it and I still get lots of errors, so I hope you can help me. I have one ...
6
votes
8answers
625 views

Does closing the application stops all active BackgroundWorkers?

Simple question, to repeat the title: Does closing the WinForms application stops all active BackgroundWorkers? (I know that many StackOverflow's threads talk about BackgroundWorker, but none I've ...
6
votes
6answers
2k views

BackgroundWorker and Threads

What are the pros and cons in using the either for achieving a given task. The million dollar question is which one to use and when? Many Thanks.
6
votes
4answers
3k views

Backgroundworker abort

I recently tried to use backgroundworker instead of "classic" threads and I'm realizing that it's causing, at least for me, more problems than solutions. I have a backgroundworker running a ...
5
votes
1answer
80 views

Questions about Java for Web Development from a PHP Developer

I have a several years of experience developing web applications with PHP and I've also worked with Java extensively (however never for web application development). I'm completing a large project ...
5
votes
1answer
144 views

Writing a polling Windows service

I usually write Windows services in C# but I'm giving it a go in F#. For a polling serivce, like this one, I ordinarily use a class I've written, which is similar to BackgroundWorker. It spawns a ...
5
votes
1answer
82 views

Is this safe to unsubscribe DoWork after calling RunWorkerAsync but before the function exits?

I have many methods (they only run one at a time though), they all use the same RunWorkerCompleated and ProgressChanged methods but they all have different Dowork methods. Is it safe to do the ...
5
votes
4answers
89 views

using statement for background worker

I have been looking over several examples of backgroundworkers and I ran across code that looks similar to this public class MyClass { public MyClass() { using(BackgroundWorker _Worker = new ...
5
votes
3answers
248 views

Issue with UI access from Background worker

I'm shifting a project over from winforms to WPF. When my code was based on WinForms I used (this.InvokeRequired) to check if the thread has access. Now I use the following code based on my Mainform : ...
5
votes
1answer
228 views

Sharing objects between a BackgroundWorker and main thread

I have a ListBox object in my main thread (WPF application). Why am I not able to access it in BackgroundWorker thread. As far as I know, the stack is separate for each thread, but the heap is common. ...
5
votes
3answers
242 views

Need suggestion on background worker

I want to develope a delivery application(self hosted WCF service ) which allows scheduling of the emails. User will assign a schedule to email and send it. The WCF service should be able to pick the ...
5
votes
6answers
784 views

polling with delayed_job

I have a process which takes generally a few seconds to complete so I'm trying to use delayed_job to handle it asynchronously. The job itself works fine, my question is how to go about polling the ...
5
votes
2answers
791 views

Easy way to excecute method after a given delay?

Is there a easy way to perform a method after a given delay like in iOS out of the box? On iPhone I would do this: [self performSelector:@selector(connectSensor) withObject:nil afterDelay:2.5]; It ...
5
votes
2answers
2k views

How can I make a background worker thread set to Single Thread Apartment?

I am creating an automated test running application. In this part of the application, I am working on a polling server. It works by constantly polling the web server to determine when a new ...
5
votes
2answers
268 views

C#: Why is my background worker thread signaling done when it isn't?

C#, using VS2010 and I've got something that makes no sense. At startup my program needs to load several hundred k from text files. After ensuring the loading code was working fine I threw it in a ...
5
votes
4answers
562 views

C# Background Worker UI Update

I am trying to use a background worker in order to retrieve a large amount of data from the database without stalling the main thread. This seems to work well, except that when it comes to update the ...
5
votes
7answers
646 views

Background Worker C# winform

is it a bad idea to load everything in from the background worker?? Current code is Executed on Form_load. we are pulling a lot of data from webservice. some long running works are in background ...
5
votes
5answers
994 views

How To Start And Stop A Continuously Running Background Worker Using A Button

Let's say I have a background worker like this: private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) { while(true) { //Kill ...
5
votes
4answers
817 views

How to dispose BackgroundWorkers the right way

I've got a Windows Service that runs BackgroundWorker's, and I'm wondering if I'm doing the right thing when I stop my Windows Service. Is it enough to: Let the BackgroundWorker1_DoWork method ...
5
votes
1answer
370 views

How to implement cancellable worker thread

I'm trying to implement a cancellable worker thread using the new threading constructs in System.Threading.Tasks namespace. So far I have have come up with this implementation: public sealed class ...
5
votes
4answers
341 views

.NET Backgroundworker - Is there no way to let exceptions pass back normally to main thread?

QUESTION: Re use of .NET Backgroundworker, is there not a way to let exceptions pass back normally to main thread? BACKGROUND: Currently in my WinForms application I have generic exception handle ...
5
votes
2answers
144 views

C# Help with a basic pedagogic example of a BackGroundWorker process populating a DataGridView

Scenario: I have a windows form that holds a DataGridWiew with 3 pre-defined columns. I have 3 variables declared outside the function and assigned to inside the function. I have a function that ...

1 2 3 4 5 17