I'm trying using huawei tasks and faced a problem. How to create task that calls a specific method, that returns "void"? For example in c# i can:
public static Task MyTask()
{
return Task.Factory.StartNew(() =>
{
//some logic here...(specific "void" method)
});
}
is there a way to do similar things with huawei.tasks?