as far as i know when runtime come across the statement below it wraps the rest of the function as a callback to the method which is invoked asynchronously (someCall() in this example). in this case anotherCall() will be executed as a callback to someCall():

    await someCall();
    await anotherCall();

I wonder if it is possible to make runtime perform like this: call someCall() in async fashion and return immidatelly to the calling thread, then invoke anotherCall() similarly (without waiting someCall to complete). because i need these 2 methods run asynchronously and suppose these calls are just fire and forget calls.

so is it possible to implement this scenario using just async and await (not using old begin/end mechanism)?

link|improve this question

75% accept rate
feedback

3 Answers

The Async CTP includes a few operators to help with parallel composition, such as WhenAll and WhenAny.

var taskA = someCall(); // Note: no await
var taskB = anotherCall(); // Note: no await

// Wait for both tasks to complete.
await TaskEx.WhenAll(taskA, taskB);

// Retrieve the results.
var resultA = taskA.Result;
var resultB = taskB.Result;
link|improve this answer
feedback

The simplest way is probably to do this:

var taskA = someCall();
var taskB = someOtherCall();
await taskA;
await taskB;

This is especially nice if you want the result values:

var result = await taskA + await taskB;

so you don't need to do taskA.Result.

TaskEx.WhenAll might be faster than two awaits after each other. i don't know since I haven't done performance investigation on that, but unless you see a problem I think the two consecutive awaits reads better, especially if you ewant the result values.

link|improve this answer
feedback

In your scenario, someCall and anotherCall will be executed consecutively, but not until someone either blocks or awaits the surrounding async method:

async Task SomeCalls() {
   await someCall();
   await anotherCall();
}

// this does not execute the calls
var t = SomeCalls();

// this does
t.Wait();

Since you can await someCall and anotherCall both must be returning a Task, so to fire and forget both, you can just do

someCall.Start();
anotherCall.Start();
link|improve this answer
I think this answer is bad since: 1) t.Wait() will block the thread 2) someCall.Start() is definitly not needed. An async method returns a task that is already started. await just waits for it to complete, it does not start it. – Cellfish Jan 18 at 20:34
feedback

Your Answer

 
or
required, but never shown

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