Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Created January 23, 2016 10:04
Show Gist options
  • Save bjartwolf/846c671c0e42d3e89a95 to your computer and use it in GitHub Desktop.
Save bjartwolf/846c671c0e42d3e89a95 to your computer and use it in GitHub Desktop.
public bool Start(HostControl host)
{
// exceptions to be thrown on min thread
_mainTask.ContinueWith(x =>
{
throw x.Exception;
}, TaskContinuationOptions.OnlyOnFaulted);
_mainTask.Start();
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment