My original method looks like:
string DoSomeWork();
Method DoSomeWork starts some work on other thread and returns execution ID (just random string). Later on I can query results by given execution ID. Main point is to make execution ID available before job will complete.
Now I want to change signature to return Task, so user can wait if he want to.
Task DoSomeWork();
At the same time I still need to return execution ID (for tracing purposes for example) and I see few options. First if out parameter, second is to return tuple with both execution ID and task(in C# this looks like not a best option), and third about which I actually want to ask.
What if I will create class that will derive from Task class:
public class ExtendedTask : Task
{
public string ExecutionID {get; set;}
}
Does this looks ok? Or it's better to decide other options?
P.S. In BCL there are some derived from Task classes.
UPDATE, seems I was not able to define this clear enouthg. But I need access to ExecutionID before job will complete and so I cannot use Task.Result.