c# Programming Glossary: toub
HttpClient.GetAsync(…) never returns when using await/async http://stackoverflow.com/questions/10343632/httpclient-getasync-never-returns-when-using-await-async just one thread at a time. This MSDN forum post . Stephen Toub demos this deadlock using a UI and so does Lucian Wischik ...
Is Task.Factory.StartNew() guaranteed to use another thread than the calling thread? http://stackoverflow.com/questions/12245935/is-task-factory-startnew-guaranteed-to-use-another-thread-than-the-calling-thr Edit Based on the below answer by Jon Skeet and Stephen Toub a simple way to deterministically prevent reentrancy would be.. library share improve this question I mailed Stephen Toub a member of the PFX Team about this question. He's come back..
Write a well designed async / non-async API http://stackoverflow.com/questions/14870478/write-a-well-designed-async-non-async-api way to just make an async or synchronous wrapper . Stephen Toub has the best info on the subject Should I expose asynchronous..
Pattern for calling WCF service using async/await http://stackoverflow.com/questions/18284998/pattern-for-calling-wcf-service-using-async-await Maybe someone form Microsoft perhaps guru Stephen Toub can help. Thanks UPDATE With a lot of help from user Noseratio..
Parallel.For(): Update variable outside of loop http://stackoverflow.com/questions/2774170/parallel-for-update-variable-outside-of-loop
Is it considered acceptable to not call Dispose() on a TPL Task object? http://stackoverflow.com/questions/3734280/is-it-considered-acceptable-to-not-call-dispose-on-a-tpl-task-object is a discussion about this in the MSDN forums . Stephen Toub a member of the Microsoft pfx team has this to say Task.Dispose.. to take care of things. Update Oct 2012 Stephen Toub has posted a blog titled Do I need to dispose of Tasks which..
Is CorrelationManager.LogicalOperationStack compatible with Parallel.For, Tasks, Threads, etc http://stackoverflow.com/questions/4729479/is-correlationmanager-logicaloperationstack-compatible-with-parallel-for-tasks forum and eventually received an answer from Stephen Toub . It turns out there there is a bug in the LogicalCallContext..
.Net TPL: Limited Concurrency Level Task scheduler with task priority? http://stackoverflow.com/questions/9315937/net-tpl-limited-concurrency-level-task-scheduler-with-task-priority to use or configure the features you don't need. Stephen Toub provides a brief description of the various schedulers in the..
|