The taskfactory tag has no wiki summary.
0
votes
3answers
90 views
Task.Factory.StartNew depend on parent thread?
I'm running this thread inside a method from a WCF service library.
The code below is executed at the end of the method. I do this because i don't want the user to wait for a background process to ...
1
vote
2answers
125 views
Run multiply instances of the same method simultaneously in c# without data loss?
I really don't understand Tasks and Threads well.
I have a method inside three levels of nested for that I want to run multiple times in different threads/tasks, but the variables I pass to the method ...
9
votes
3answers
248 views
Different exception handling between Task.Run and Task.Factory.StartNew
I encountered an issue when I was using Task.Factory.StartNew and tried to capture an exception that is thrown. In my application I have a long running task that I want to encapsulate in a ...
1
vote
0answers
163 views
TaskFactory TcpClient [closed]
I have a piece of code that connects to a third party system through TCP.
The application is in fact a windows service.
I use class TCPClient to perform the operation, however, whenever the ...
0
votes
1answer
127 views
How to start tasks after cancelling
I have a Windows form with three buttons. One button adds entries to a BlockingCollection. One starts processing the list and one stops processing the list.
I can add entries to my BlockingCollection ...
0
votes
2answers
133 views
Multithreading using the thread pool
I have the following code:
private static void SplitTilesRecursive(Image original, int level)
{
int mapWidth = GetMapWidth(level);
int tilesOnSide = mapWidth/TileSize;
...
0
votes
1answer
635 views
System.Threading.ThreadAbortException fired in new thread
I am currently working in .net c# 4.0 and have come across an issue with some code that I written that is causing me some headaches.
I am using the System.Threading.Tasks.TaskFactory class in ...
0
votes
2answers
114 views
TaskFactory miss running tasks
Is it possible for the TaskFactory to not run a task for a long time if there are too many tasks queued up already? If so, there a way to configure the taskfactory so that it is able to run more tasks ...
1
vote
1answer
240 views
Task Factory is sequential and not parallel?
I am not a thread expert but I wanted to run a function N times at once in parallel and if needed using more than one core when available.
I currently have the bellow code:
tasks = new ...
1
vote
2answers
299 views
Task Persistence C#
I'm having a hard time trying to get my task to stay persistent and run indefinitely from a WCF service. I may be doing this the wrong way and am willing to take suggestions.
I have a task that ...
1
vote
1answer
140 views
XNA with TaskFactory execution times when executing SetData on Texture in a loop
Though this question is about an implementation in XNA, i think it is a better fit for a more general C# forum. I am using the TaskFactory with XNA to initialize additional resources while presenting ...
1
vote
1answer
304 views
GUI froze while Dispatcher.BeginInvoke or Task.StartNew
NOTE: Depends on this quetion
Hi. I have a view-model like this:
public class ViewModel {
private readonly IPersonService _personService;
private readonly ...
1
vote
0answers
189 views
Task.Factory Timing Out in ASP.NET
I've been scouring for info on timeout settings for asynchronous tasks but I can't find anything that doesn't involve wait(). Maybe I'm looking at this wrong.
I have an API call that may take 10 ...
0
votes
1answer
74 views
Start a Task thread from another Task when a certain time frame passed by
How can I start a c# 4.0 Task2 (TPL) from another Task1 after a certain time x seconds?
Sample scenario:
Start Task1 that computing an algo. When the computing took at least X seconds start another ...
3
votes
3answers
3k views
Sleep task (System.Threading.Tasks)
I need to create thread which will replace photo on my WindowsForms window, than waits for ~1sec. and restore the previous photo.
My assumption was that this code:
TaskScheduler ui = ...
2
votes
2answers
592 views
parallel.for or task.startnew in multithreading process
I have a list of strings that I need to pass to a process in a different class. What I want to know which of the two ideas would be a better approach to use in terms of speed, efficiency and parallel ...
3
votes
1answer
567 views
Why does TaskFactory.StartNew in combination with Task.ContinueWith work?
TaskFactory.StartNew() creates a new Task, starts it and then returns it. I suppose that it is safe to assume that the following code with always work (since it was taken from MSDN):
...
0
votes
1answer
212 views
C# async call still hangs UI [closed]
I am using TaskFactory.StartNew(foo);
and in that foo there are some heavy calculations (might take a few minutes). foo also updated progress to the UI.
I cant see the updates in the UI and the ...
0
votes
1answer
247 views
handling task factory exceptions
I have set up a process to create new tasks to handle file processing. A problem arised where I received and unhandled exception error and just clicking on the continue button, the main process ...
4
votes
1answer
4k views
How to create a Task with TaskFactory.FromAsync and custom Async procedures
I am trying to test some classes that rely on a Task to do some background computation (retrieve data from a network location). The class gets a non-started instance of a Task, adds a ContinueWith ...
1
vote
3answers
1k views
WPF FormattedText “The system cannot find the file specified” exception in a service
We are using the WPF FormattedText object to determine text size in a service that grabs the latest news headlines from an RSS feed. The text retrieved needs to be in a specified canvas size. The ...
11
votes
2answers
8k views
TPL TaskFactory.FromAsync vs Tasks with blocking methods
I was wondering if there were any performance implications between using TPL TaskFactory.FromAsync and using TaskFactory.StartNew on blocking versions of the methods. I'm writing a TCP server that ...
2
votes
3answers
5k views
Task.Factory.StartNew “action” argument and higher level local variables
Consider this:
void StartUpdate(DataRequest dataRequest)
{
Task.Factory.StartNew(request => {... do something with "request" ...},
dataRequest);
}
Now, my question: can I use ...
5
votes
2answers
1k views
how add tasks priority functionality
i use Task Library for my image compression service. I would to compress many files concurrency. But i want the service run only when user is idle(or no more impotarnt task in programm).
I know that ...
7
votes
4answers
4k views
lowering priority of Task.Factory.StartNew thread
a code like below will start a new thread to do the job. Is there any way I can control the priority of that thread?
Task.Factory.StartNew(() => {
// everything here will be executed in a new ...
22
votes
3answers
4k views
TaskFactory.StartNew versus ThreadPool.QueueUserWorkItem
Apparently the TaskFactory.StartNew method in .NET 4.0 is intended as a replacement for ThreadPool.QueueUserWorkItem (according to this post, anyway). My question is simple: does anyone know why?
...