await Task.CompletedTask for what?

23,657

Solution 1

It is there to make it easier for later stage to implement async code calls without having to alter the signature thus preventing having to refactor the calling code.

Whilst the scaffolded sample code is synchronous, the Template Studio is designed specifically around an async data access layer, you are expected to implement your own data access by modifying the body of the generated methods.

If the async implementation were NOT implemented, there would be significant code changes throughout the templated app and it would be a very steep learning curve for new developers, the point of the template is to get up and running with minimal effort or even experience!

Another option would be to remove the async keyword from the method signature and that line and do

return Task.FromResult<IEnumerable<SampleModel>>(data); 

You see this construct when you need to return an awaitable Task due to an interface for example while the implementation has no async work to do.

In this case however, since it is a template they expect people to replace the await Task.Completed with something like await FetchDataFromDatabaseAsync();. Since the async keyword is already there it minimizes the needed changes to implement your own async call.

Anyway, without this await construct you can do this:

public class SampleModelService
{
    public Task<IEnumerable<SampleModel>> GetDataAsync()
    {
        var data = new List<SampleModel>();

        data.Add(new SampleModel
        {
            Title = "Lorem ipsum dolor sit 1",
            Description = "Lorem ipsum dolor sit amet",
            Symbol = Symbol.Globe
        });

        data.Add(new SampleModel
        {
            Title = "Lorem ipsum dolor sit 2",
            Description = "Lorem ipsum dolor sit amet",
            Symbol = Symbol.MusicInfo
        });

        return Task.FromResult<IEnumerable<SampleModel>>(data); 
     }
}

If there is no requirement to return a Task at all (you do not have any async code) then just remove it completely. (But then you have to refactor code that calls this method)

Reviewing this code I suspect someone is going to call an async method later in the development process and already anticipated that by specifying that this method returns a Task.

Solution 2

await Task.CompletedTask makes it easier to implement this method as the first answer said, Since this implementation isn't time-consuming, and thus "await Task.CompletedTask;" or "return Task.FromResult(data);" both will run synchronously. You can use those two pattern mentioned above, but this method is designed to be an asynchronous method, so when your implementation is time-consuming but don't have any async code, use Task.Run to create a task.

Share:
23,657
Youngjae
Author by

Youngjae

A humble C# lover, AI-based service developer, acquired education start-up programmer, and highschool mathematics teacher. LINE Corp., Technical Fellow, 2018~. Bapul CTO, 2014~2017. acquired to LINE corporation Microsoft Azure MVP, 2014~Present. profile Please contact me at anytime if you have any question :) My personal contact can be found at GitHub.

Updated on July 09, 2022

Comments

  • Youngjae
    Youngjae almost 2 years

    I created UWP app with Windows Template Studio that introduced at Build2017.

    Below class is a part of generated code from it.

    public class SampleModelService
    {
        public async Task<IEnumerable<SampleModel>> GetDataAsync()
        {
            await Task.CompletedTask; // <-- what is this for?
            var data = new List<SampleModel>();
    
            data.Add(new SampleModel
            {
                Title = "Lorem ipsum dolor sit 1",
                Description = "Lorem ipsum dolor sit amet",
                Symbol = Symbol.Globe
            });
    
            data.Add(new SampleModel
            {
                Title = "Lorem ipsum dolor sit 2",
                Description = "Lorem ipsum dolor sit amet",
                Symbol = Symbol.MusicInfo
            });
            return data;
        }
    }
    

    My question is, what is the purpose and reason of await Task.CompletedTask; code in here? It actually does not have Task result receiver from it.