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)?