| c# Programming Glossary: taskcreationoptions.longrunningDeserialize JSON object sent from Android app to WCF webservice http://stackoverflow.com/questions/13165533/deserialize-json-object-sent-from-android-app-to-wcf-webservice  typeof TestService baseAddress host.Open null TaskCreationOptions.LongRunning .Wait Client var jsonString new JavaScriptSerializer .Serialize.. 
 why my disruptor example is so slow? http://stackoverflow.com/questions/13334778/why-my-disruptor-example-is-so-slow  1 ve.Value ve.Value   catch InvalidOperationException   TaskCreationOptions.LongRunning for int i 0 i length i   var valueToSet i  ValueEntry entry.. 
 Serving large files with C# HttpListener http://stackoverflow.com/questions/13385633/serving-large-files-with-c-sharp-httplistener  ctx  WriteFile HttpListenerContext ctx context TaskCreationOptions.LongRunning TaskCreationOptions.LongRunning WriteFile is your code where.. ctx context TaskCreationOptions.LongRunning TaskCreationOptions.LongRunning WriteFile is your code where Thread.Sleep 200 is removed. If.. 
 Stopwatch in a Task seems to be additive across all tasks, want to measure just task interval http://stackoverflow.com/questions/16239220/stopwatch-in-a-task-seems-to-be-additive-across-all-tasks-want-to-measure-just  myCollection var task Task.Factory.StartNew  DoSomething TaskCreationOptions.LongRunning task.ContinueWith m myResponseHandler m.Result iResult.Add task.. load i var task Task.Factory.StartNew  DoSomething load TaskCreationOptions.LongRunning following commented lines do NOT change the behavior in question.. 
 TaskCreationOptions.LongRunning option and ThreadPool http://stackoverflow.com/questions/3105988/taskcreationoptions-longrunning-option-and-threadpool  option and ThreadPool  TPL uses Task Schedulers to coordinate.. document default task scheduler uses Thread Pool but if TaskCreationOptions.LongRunning option is presented then it will create a dedicated thread for.. 
 How do Tasks in the Task Parallel Library affect ActivityID? http://stackoverflow.com/questions/4340948/how-do-tasks-in-the-task-parallel-library-affect-activityid  milliseconds Used 23 threads Changing taskCreationOpt to TaskCreationOptions.LongRunning gave different results Completed 100 tasks in 3458 milliseconds.. 
 Is there a Task based replacement for System.Threading.Timer? http://stackoverflow.com/questions/4890915/is-there-a-task-based-replacement-for-system-threading-timer   return Task.Factory.StartNew mainAction cancelToken TaskCreationOptions.LongRunning TaskScheduler.Current  summary Mains the periodic task action... 
 ThreadPool.QueueUserWorkItem vs Task.Factory.StartNew http://stackoverflow.com/questions/9200573/threadpool-queueuserworkitem-vs-task-factory-startnew  to start a long running task with TPL you should specify TaskCreationOptions.LongRunning which will mean it doesn't schedule it on the thread pool. EDIT.. 
 |