vote up 2 vote down star

Hi all,

I have a method which I would like to invoke asynchronously:

void Foo()
{
}

I can indeed invoke this asynchronously by the following:

delegate void DVoidMethod();
DVoidMethod FooDelegate = new DVoidMethod(Foo);
FooDelegate.BeginInvoke(null,null);

Has anyone got any alternatives?

I think three lines of code is too much?

flag

Dupe. stackoverflow.com/questions/1018610/… – Will Jul 8 at 16:08
Thanks for all your answers - Will your point is valid it is a duplicate, but for future SE results, I think the title 'Invoke a void Method Asynchronously ' is useful. Thanks all! – divinci Jul 9 at 11:17

5 Answers

vote up 8 vote down check

Disclaimer:

Don't use this in real code. This is just an attempt to shorten the code OP mentioned. To do real async calls without getting results back, use:

ThreadPool.QueueUserWorkItem(stateObject => Foo());


Use Action and Func delegates in the framework:

new Action(Foo).BeginInvoke(null, null);

Action<T> has been around since 2.0. Other variants are added in 3.5. On 2.0, you can, however, declare a bunch of them somewhere manually for further use; or even better, use LINQBridge.

link|flag
1  
+1 (Note: requires framework 3.5) – Simon P Stevens Jul 8 at 15:55
1  
@Simon, the Action delegate doesn't require the 3.5 Framework – Andreas Grech Jul 8 at 15:59
2  
Microsoft itself (Joe Duffy) has advised against the .BeginInvoke as it goes through entire remoting stack. I'd rather schedule to the ThreadPool (or make it a Task, in 4.0) – zvolkov Jul 8 at 16:00
zvolkov: I just shortened the OP's code. – Mehrdad Afshari Jul 8 at 16:02
3  
You still need to call EndInvoke for this. interact-sw.co.uk/iangblog/2005/… Simon P Stevens has the correct answer using the ThreadPool – Wilka Jul 8 at 16:12
show 6 more comments
vote up 3 vote down

You can knock it down to two lines (in .Net 1.1 and earlier) with simply:

delegate void DVoidMethod();
new FooDelegate(DVoidMethod).BeginInvoke(null, null)

But in the 2.0 and later versions.. the syntax from Mehrdad works.

Refer to the Action delegate for 2.0 and later at MSDN at:

http://msdn.microsoft.com/en-us/library/018hxwa8(VS.80).aspx

link|flag
Thanks for the 2.0 answer – divinci Jul 8 at 15:57
edit: the answer for 1.1! – divinci Jul 8 at 15:58
vote up 6 vote down

How about:

ThreadPool.QueueUserWorkItem(new WaitCallback(Foo));
link|flag
While this is the technically better method to accomplish that, you can't just get a WaitCallback directly from a method. The WaitCallback signature requires an object parameter. – Mehrdad Afshari Jul 8 at 16:12
vote up 2 vote down

Without using Action and Func you could use the MethodInvoker in the case of the void () delegate:

new MethodInvoker(Foo).BeginInvoke(null, null);

Also, it should be noted that if you use the BeginInvoke method you have to call EndInvoke when the delegate has completed execution.. so this line above will have to change to either use a callback or you need to keep a reference to the delegate.. Like so:

MethodInvoker mi = null;
IAsyncResult ar = null;

ar = (mi = new MethodInvoker(Foo)).BeginInvoke(null,null);


.. sometime later after the delegate has completed executing
mi.EndInvoke(ar);

This is true whenever you use BeginInvoke. So I guess in the end I wouldn't recommend using the BeginInvoke method..

@Steven's solution using the ThreadPool is a much better solution in my opinion.. and his oviously:)

link|flag
1  
+1 for EndInvoke. See msdn.microsoft.com/en-us/library/…: "No matter which technique you use, always call EndInvoke to complete your asynchronous call. " – John Saunders Jul 8 at 16:16
+1 for good link John :) – divinci Jul 9 at 11:14
vote up 1 vote down

Strictly speaking I wouldn't worry about the number of lines of code something takes from a performance perspective because you have no idea how much actual code is behind the functions you're calling.

link|flag
+1 for valid point – divinci Jul 9 at 11:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.