Tagged Questions
1
vote
2answers
43 views
Default TaskCreationOptions in Task.Run
Why the default value for CreationOptions of a Task created using Task.Run is DenyChildAttach rather than None?
Has it anything to do with making work with the new async and await in C# 5.0 simpler ...
-1
votes
1answer
67 views
Regarding various way of calling a method [closed]
very rare i worked with thread, background worker etc but never try to know when which one we should use and how each technique works internally. so here i am asking few question regarding ...
1
vote
2answers
69 views
Most efficient configuration of C# Tasks and Continuations when calling a web service?
I am creating a network client that talks to a real-time web API.
The client must make many different calls per second and feed a Task<TResult> back to each client component so the client can ...
0
votes
3answers
95 views
Queue several tasks with callback
Assume that we have some methods that do some big work.
Initially we don`t know how many methods there are ( can be 1 and can be 10 ).
In code this looks like this:
public interface IWorker
{
...
4
votes
2answers
217 views
Task continuation parallel execution with async/await
In the context of a console application making use of async/await constructs, I would like to know if it's possible for "continuations" to run in parallel on multiple threads on different CPUs.
I ...
0
votes
1answer
66 views
Threadpool to Task Conversion
My current solution uses the ThreadPool to process transactions. Every couple minutes I grab 1-200 transactions and queue each one via the QueueUserWorkItem function. Something like this where 'trans' ...
1
vote
1answer
252 views
C# .Net 2.0 Threadpool equivalent of .Net 4.5 TPL producer consumer logic
In my application I have a set number of actions to preform. I want to designate a specific amount of threads to do the actions. As some action may take longer than others and can be waiting for a ...
0
votes
2answers
92 views
ThreadPool with speed execution control
I need proccess several lines from a database (can be millions) in parallel in c#. The processing is quite quick (50 or 150ms/line) but I can not know this speed before runtime as it depends on ...
4
votes
1answer
263 views
Would a ThreadPool or a Task be the correct thing to use for a server?
I'm trying to convert some code from just creating a new thread to run a function to making it use a Thread Pool or even the Task Paralleling Library. I'm doing this since I know that despite the ...
2
votes
2answers
315 views
Force simultaneous threads/tasks for C# load testing app?
Question:
Is there a way to force the Task Parallel Library to run multiple tasks simultaneously? Even if it means making the whole process run slower with all the added context switching on each ...
1
vote
1answer
163 views
Parallel for each using double threads expected in TPL
I will start this off with a basic explanation of how I understand a couple things to work and then conclude this all with a tldr; if people simply wish to reach the actual question I'm having here. ...
0
votes
3answers
268 views
Open window inside a thread
i need some help how i can manage this problem.
Scenario:
Start 3 Threads (each one with different values) (with the TPL or with ThreadPool)
Each Thread gather some different data
Open foreach ...
3
votes
1answer
148 views
Deadlock Risk in Nested Parallel For
Take the following naive implementation of a nested async loop using the ThreadPool:
ThreadPool.SetMaxThreads(10, 10);
CountdownEvent icnt = new CountdownEvent(1);
for (int i = 0; i < 50; i++)
{
...
0
votes
3answers
356 views
Should I use threadpool,threads or backgroundworker with System.Timers.Timer?
public class JobRunner
{
internal Timer Timer;
internal readonly IEnumerable<YuartzJob> Jobs;
public void Start()
{
this.Timer = new Timer(5000);
...
0
votes
1answer
386 views
Speeding up Azure Storage API with NET4 and .NET 4.5 Parallel Extensions
The .NET 4 and 4.5 whitepapers have comments about how the parallel library can speed up performance of IO access. (example of a buffered serial queue below)
Question:
Has anyone successfully ...
4
votes
2answers
345 views
Is it true that for long running processes it is better to do thread manually instead of threadpool?
I read on the other day that for long-running tasks my best bet is to manually create threads instead of using .NET’s thread pool or Task Parallel. I'd really like someone to enlighten me as I am ...
0
votes
2answers
168 views
Execute the last thread of ThreadPool only
I am creating an auto-complete control that updates as the user types text. Every time the user types a key a new thread fires in order to filter the results. The results come over the network and are ...
0
votes
1answer
62 views
Does the StartNew hold a thread for the duration of a call?
I was under the assumption that StartNew only used a thread from the ThreadPool while work was actually being done and would release it when it was waiting. For example:
Task.Factory.Startnew() {
...
3
votes
2answers
338 views
Multi-threading with the Task library
in ASP.NET MVC I have an Action that accepts a list of email addresses entered by the user, validates them and then sends HTML and text version of email message to each recipient. User is then ...
0
votes
6answers
684 views
Is Task.Factory.StartNew() guaranteed to create at least one new thread?
I understand that the TPL does not necessarily create a new thread for every task in a parallel set, but does it always create at least one? eg:
private void MyFunc()
{
Task.Factory.StartNew(() ...
5
votes
6answers
2k views
Using Task or async/await in IHttpAsyncHandler
Since the very begining of writing ASP.NET applications when I wanted to add a threading there are 3 simple ways I can accomplish threading within my ASP.NET application :
Using the ...
0
votes
2answers
214 views
Task Parallelism via C# 10 tasks at a time for say 100 similar tasks
I have WCF service in a managed Window service. There can be several service request through asp.net web page at a time (say 100 requests) to access this service. I am applying lock in the wcf service ...
1
vote
0answers
423 views
ThreadPool vs Task Parallel Library [closed]
I've used both, the thread pool and TPL in different scenarios. Moving forward, it would be helpful to have a better understanding of what each is suited for. Here are two different scenarios to ...
0
votes
1answer
472 views
Why there is so much performance diffrence between Tasks,Thread and ThreadPool?
Here i attached my example that i used for performance test. Why there is so much diffrence between all this ? (This is sample console application)
class Program
{
internal class ThreadObj
...
6
votes
3answers
204 views
Should .Net 4.0 Tasks always be the preferred method for multi-threaded applications?
I was reading about the Task Parallel Library and the article said:
In the .NET Framework 4, tasks are the preferred API for writing multi-threaded, asynchronous, and parallel code
But it also ...
4
votes
2answers
3k views
MonoTouch - Threading
A common task is to do something in the background thread, then when done, pass the results to the UI thread and inform the user.
I understand there are two common ways:
I can use the TPL:
var ...
3
votes
2answers
614 views
How to manage Thread Local Storage (TLS) when using TPL?
I want to store logging context information in TLS so that I can set a value at the entry point, and have that value available in all resulting stacks. This work well, but I also using TPL and the ...
0
votes
0answers
35 views
ThreadPools from different processes
Task Parallel Library is a great wrapper around ThreadPool that ensures close to optimal use of all cores. This means not only spawning threads but also limiting the amount of active threads in order ...
3
votes
3answers
440 views
Asynchronous socket reading: the initiating thread must not be exited - what to do?
I have a NetworkStream which I read asynchronously (using async/await)
await Task<int>.Factory.FromAsync((cb, state) => stream.BeginRead(buffer, offset, readLen - offset), stream.EndRead, ...
0
votes
2answers
445 views
C# 4.0 and queue with limited non-dedicated threadpool threads consumers
C# 4.0's new BlockingCollection doesn't answer a simple requirement we need:
* Concurrent-queue for tasks items.
* Consumers - limited N threads at a time - from the threadpool (threads which are ...
9
votes
6answers
1k views
Why *not* change the priority of a ThreadPool (or Task) thread?
There are many places across the web and stackoverflow where one is discouraged from changing the priority of a ThreadPool thread or TPL Task. In particular:
"You have no control over the state ...
25
votes
5answers
6k views
Should i use ThreadPools or Task Parallel Library for IO-bound operations
In one of my projects that's kinda an aggregator, I parse feeds, podcasts and so from the web.
If I use sequential approach, given that a large number of resources, it takes quite a time to process ...
1
vote
2answers
397 views
Does the number of busy worker threads in the CLR ThreadPool affect performance of I/O threads?
We have a Windows Service which hosts a number of WCF services and, in an unrelated part of the app, makes extensive use of the TPL Task class to asynchronously do relatively short bits of work.
It ...
1
vote
2answers
444 views
TPL Tasks, Threads, etc
Could someone clear up to me how these things correlate:
Task
Thread
ThreadPool's thread
Paraller.For/ForEach/Invoke
I.e. when I create a Task and run it, where does it get a thread to execute on? ...
3
votes
1answer
1k views
(How) Does TPL use (CLR) Thread Pool?
I am currently researching Task Parallel Library and I read somewhere that TPL actually uses thread pool mechanism from CLR-Level. I couldn't find any article confirming this information. I know, TPL ...
16
votes
2answers
5k views
TaskCreationOptions.LongRunning option and ThreadPool
TPL uses Task Schedulers to coordinate tasks. According to official document, default task scheduler uses Thread Pool, but if TaskCreationOptions.LongRunning option is presented then it will create a ...
4
votes
4answers
2k views
Threading Library for Multithreaded Windows Service
I'm looking for a good library, preferably in C#, which I can use in a windows service and it will handle all the multithreading functionality needed.
The service will run every x minutes, check a ...