Top "Task" questions

A task is an abstraction that is used to work with concurrency, it can denote operation that should be executed concurrently with the rest of a program.

What is the 'realtime' process priority setting for?

From what I've read in the past, you're encouraged not to change the priority of your Windows applications programmatically, and …

windows task taskmanager thread-priority task-management
Task vs Thread differences

I'm new to parallel programming. There are two classes available in .NET: Task and Thread. So, my questions are: What …

c# .net multithreading task
When correctly use Task.Run and when just async-await

I would like to ask you on your opinion about the correct architecture when to use Task.Run. I am …

c# asynchronous task async-await
How to safely call an async method in C# without await

I have an async method which returns no data: public async Task MyAsyncMethod() { // do some stuff async, don't return any …

c# exception async-await task task-parallel-library
My C# application is returning 0xE0434352 to Windows Task Scheduler but it is not crashing

I have written a few C# apps that I have running via windows task scheduler. They are running successfully (as …

c# .net scheduled-tasks task
How do I abort/cancel TPL Tasks?

In a thread, I create some System.Threading.Task and start each task. When I do a .Abort() to kill …

c# .net multithreading task abort
Platform.runLater and Task in JavaFX

I have been doing some research on this but I am still VERY confused to say the least. Can anyone …

java multithreading user-interface task javafx
Task.Run with Parameter(s)?

I'm working on a multi-tasking network project and I'm new on Threading.Tasks. I implemented a simple Task.Factory.StartNew() …

c# lambda task-parallel-library task
How do I wait until Task is finished in C#?

I want to send a request to a server and process the returned value: private static string Send(int id) { …

c# .net task task-parallel-library wait
Deleting all pending tasks in celery / rabbitmq

How can I delete all pending tasks without knowing the task_id for each task?

task rabbitmq celery celery-task