Hot answers tagged task
4
Relying on timing is buggy by principle because timings are never guaranteed, especially not under real word conditions. You should apply proper waiting on tasks if you need to ensure that they have completed. Or use C# 5.0 async-await, or continuations.
In short, don't program by coincidence. Make your programs correct by construction.
4
Just use it directly:
string myurl = "http://google.de";
Task.Factory.StartNew(() =>
{
MessageBox.Show(myurl);
});
This is called a "closure".
If you don't want to do that then you can pass the url in as another parameter to StartNew:
string myurl = "http://google.de";
Task.Factory.StartNew(url =>
{
MessageBox.Show((string)url);
}, myurl);
...
4
For the case where the Tasks action runs on the main thread, the most likely cause is that the method UpdateSomething is being called from within another Task (a Task that was scheduled to run on the main thread). In that case, the TaskScheduler.Current is the main thread TaskScheduler not the TaskScheduler.Default which queues work to the thread pool.
...
4
I ran into the same problem a while ago. I stuck up a little post about it here:
Today I had a major hair pulling moment. I was using a await/async on a block of code wrapped in a new task. No matter what I did it would just start the Task but then not wait for the result.
After much frustration I worked out that using await Task.Factory.StartNew ...
4
Just use Task.FromResult to return a completed task:
public Task BeginAsync()
{
return Task.FromResult(true);
}
Your current implementation is very inefficient, as it builds the state machine, and also uses a ThreadPool thread to run the empty task.
3
You most certainly can wait on a task twice. You can wait on a task as many times as you want with no negative side effects. Now, if you've already waited on a task in that same thread it will already be done, so the future Wait calls will all just return immediately as there is nothing to wait for, but they certainly won't fail or otherwise produce ...
3
ContinueWith itself returns a task - Task<int> in this case. You can do anything (more or less - you can't manually Start a continuation, for example) you wish with this task that you could have done with the 'original' task, including waiting for its completion and inspecting its result.
var t1 = new Task<int>( () => 1);
var t2 = ...
2
Stephen Toub has already answered that in "How do I cancel non-cancelable async operations?".
The summary of the post is that your question is actually two questions:
How can you cancel the long operation and
How can you stop waiting for the long operation
In the first case, you can't cancel the long operation if the API doesn't support it. A DB or ...
2
If it's writing "Failed to post" then you know the task has faulted. So you can find out the exception with the Task.Exception property. Note that that will give you an AggregateException, as it's possible that multiple things have gone wrong. (That may not be possible in your case, but it's possible in general with tasks.)
If you can use C# 5 instead, then ...
2
You can use a BlockingCollection<T> to help with this.
The tricky thing is that you want several threads processing work items, but they can produce their output in a random order so you need to multiplex the output when writing it (assuming you want to write the data in the same order as it would have been written if you used the old single-threaded ...
2
Spring has support for Task Scheduling. Find more information here:
http://static.springsource.org/spring/docs/current/spring-framework-reference/html/scheduling.html
E.g. you can configure scheduled task in your application context like so:
<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="beanA" method="methodA" ...
2
You should place i into a temporary variable and use that, i.e.
int iTemp = i;
tasks[i] = Task.Factory.StartNew(() => {
ProcessingTask.run(
iTemp,
stack,
collector,
sets,
cts.Token,
...
2
It is currently the default expected behavior.
This has been brought up a few times with grunt:
https://github.com/gruntjs/grunt-contrib-uglify/issues/54
extension is after last period only
From the first link, a change has been submitted to node globule that will let you select either first or last dot.
Other than that (or until that lands) you could ...
2
DataSet ds = new DataSet();// SQL STUFF
SqlConnection con = new SqlConnection(ConnectionString);
SqlDataAdapter da = new SqlDataAdapter("SELECT ProcessName FROM ApplicationProcesses", con);
// since you start from SqlDataAdapter I'm continue from there..
da.Fill(ds, "ProcessNames");
// get the process in the database to a array
string[] ...
1
If you use async/await, there's no need for another thread (since you have no CPU-bound processing).
In your case, it sounds like you just need a queue of asynchronous delegates. The natural type of an asynchronous delegate is Func<Task> (without a return value) or Func<Task<T>> (with a return value). This little tip is unfortunately not ...
1
You should be able to do this by getting all of the tasks for a project and selecting the completed field using the ?opt_fields=completed option on your request.
E.g., http://app.asana.com/api/1.0/projects/[project]/tasks?opt_fields=completed
where [project] is the project ID you're querying. This will return the completed status of all tasks within a ...
1
You should use CancellationTokens:
var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
var token = cts.Token;
Task<ProductEventArgs>.Factory.StartNew(() =>
{
try
{
// occasionally, execute this line:
token.ThrowIfCancellationRequested();
}
catch (OperationCanceledException)
{
return new ...
1
This code does what you have expressed here:
var timeout = TimeSpan.FromSeconds(5);
var actualTask = new Task<ProductEventArgs>(() =>
{
var longRunningTask = new Task<ProductEventArgs>(() =>
{
try
{
Thread.Sleep(TimeSpan.FromSeconds(10)); // simulates the long running computation
return new ...
1
You need to point grunt.config to the correct property in your config:
grunt.event.on('watch', function(action, filepath) {
var cfgkey = ['copy', 'devTmpl', 'files'];
grunt.config.set(cfgkey, grunt.config.get(cfgkey).map(function(file) {
file.src = filepath;
return file;
}));
});
1
I think what you need to do is assign your php call as an eventSource something like they have in the Events (as a json feed) jquery.ajax example. You'll want to specify parameters as something like...
events: {
url: '/distribucion/proyectos/obtenerTareasProyecto',
type: 'POST',
data: {
idProyecto: proyecto
}
}
It will then take ...
1
To schedule a recurring task, you can use a Timer with a TimerTask.
See http://developer.android.com/reference/java/util/Timer.html
Eg. For your 2nd question, to do something every 15 minutes starting from now:
long INTERVAL_MSEC = 900000;
Timer timer = new Timer();
TimerTask task = new TimerTask() {
public void run() {
sendStatusAndGPS();
...
1
Your assumption is wrong. The Result property of Task will effectively wait for the task to complete - so, A, B , C will be assigned in that sequence. Also, this will defeat the purpose of creating async tasks.
One way is you can use Task.WaitAll on all three tasks and then assign the result from each task to A,B,C
you can also use async/await if you have ...
1
IF you need a powerfull task scheduler which works perfectly with spring, use quartz scheduler.You can configure the number of threads to be used for the scheduler and much more.
There is no headache of thread control here quartz scheduler manages it very well.
It can be configured in spring to work much complicated schedules like
trigger every minute ...
1
What you're describing here, may be a rough sketch of a work queue. You could enqueue processes for asynchronous processing, wait for a notification of completion, and then terminate. This works, but there are new concurrency tools available. I recommend reading the Java Concurrency Lesson.
The new model for concurrency allows you to separate the ...
Only top voted, non community-wiki answers of a minimum length are eligible
