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.

Cancel blocking AcceptTcpClient call

As everyone may already know, the simplest way to accept incoming TCP connections in C# is by looping over TcpListener.…

c# task blocked-threads
How to return to the latest launched activity when re-launching application after pressing HOME?

Familiar scenario: I have a Main activity that launches a Game activity when a button is pressed. If the user …

android android-activity stack task
UWP update UI from Task

I have application, which is checking network ranges (for running http service) in local network. So it means, that I …

c# user-interface task uwp
C# start a scheduled task

I'm trying to write a simple form in c# that will run a scheduled task one some computers. Whet I …

c# task remote-connection
C# async within an action

I would like to write a method which accept several parameters, including an action and a retry amount and invoke …

c# task action
Running batch files sequentially in win 7 task scheduler

I have 2 batch files as "actions" in a single task. The first one does a scan for viruses using microsoft …

windows task scheduler
Ant scp task not working, even with jsch on ant/lib

I need to copy a war file via scp. I have added the jsch-0.1.42.jar to $ANT_HOME/lib but …

java ant build scp task
.NET 4 Task Class Tutorial

.NET 4 has a Class - Task. It's pretty interesting and I would like to start using it. For example, I …

c# .net scheduled-tasks task
How do I add a high-priority TODO comment in Visual Studio?

Adding a comment such as this: // TODO: Refactor this code ...creates a task in the Task List that I can …

visual-studio visual-studio-2008 comments task todo
Multi-threaded HttpListener with await async and Tasks

Would this be a good example of a scalable HttpListener that is multi-threaded? Is this how for example a real …

c# task async-await