Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get reference to the task my code is executed within?

ISomeInterface impl = new SomeImplementation();
Task.Factory.StartNew(() => impl.MethodFromSomeInterface(), new MyState());

...

void MethodFromSomeInterface()
{
    Task currentTask = Task.GetCurrentTask();    // No such method?
    MyState state = (MyState) currentTask.AsyncState();
}

Since I'm calling some interface method, I can't just pass the newly created task as an additional parameter.

share|improve this question
Can you pass it as a parameter to SomeImplementation's constructor? Even better IMO, pass MyState to the constructor and not require Task knowledge within MethodFromSomeInterface at all. – Stephen Cleary Jul 14 '11 at 23:00
@Stephen Cleary, Seems like he can't change the interface. – Filip Ekberg Jul 14 '11 at 23:02
I can't change the interface, nor the implementation. So, I do need to associate MyState instance with the current Task. – Reuven Bass Jul 14 '11 at 23:14
Moreover, MethodFromSomeInterface may be called concurrently within different tasks. – Reuven Bass Jul 14 '11 at 23:25

1 Answer

up vote 4 down vote accepted

Since you can't change the interface nor the implementation, you'll have to do it yourself, e.g., using ThreadStaticAttribute:

static class SomeInterfaceTask
{
  [ThreadStatic]
  static Task Current { get; set; }
}

...

ISomeInterface impl = new SomeImplementation();
Task task = null;
task = Task.Factory.StartNew(() =>
{
  SomeInterfaceTask.Current = task;
  impl.MethodFromSomeInterface();
}, new MyState());

...

void MethodFromSomeInterface()
{
  Task currentTask = SomeInterfaceTask.Current;
  MyState state = (MyState) currentTask.AsyncState();
}
share|improve this answer
1  
Is this really thread safe? In fact, is anything beside using lambda parameter in StartNew thread safe? It seems to me that the task variable could get out of scope before the lambda even runs. – wilx Nov 29 '11 at 9:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.