The. Net5 Async

Source: Internet
Author: User

public static Class Taskasynchelper
{
<summary>
Asynchronously runs a method function and executes a callback when execution is complete callback
</summary>
<param name= "function" > Async method, the method has no arguments, the return type must be void</param>
<param name= "Callback" > The callback method executed at the completion of the Async method, which has no arguments, the return type must be void</param>
public static async void RunAsync (action function, action callback)
{
Func<system.threading.tasks.task> Taskfunc = () =
{
Return System.Threading.Tasks.Task.Run (() =
{
function ();
});
};
await Taskfunc ();
if (callback! = NULL)
Callback ();
}

<summary>
Asynchronously runs a method function and executes a callback when execution is complete callback
</summary>
<typeparam name= "TResult" > Return type of async method </typeparam>
<param name= "function" > Async method, the method has no arguments, the return type must be tresult</param>
<param name= "Callback" > The callback method executed when the Async method executes, the method parameter is TResult, the return type must be void</param>
public static async void Runasync<tresult> (func<tresult> function, action<tresult> callback)
{
Func<system.threading.tasks.task<tresult>> Taskfunc = () =
{
Return System.Threading.Tasks.Task.Run (() =
{
return function ();
});
};
TResult RLT = await taskfunc ();
if (callback! = NULL)
Callback (RLT);
}
}

The. Net5 Async

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.