A task is a concurrent thread of execution in an Ada program. Tasks correspond to Threads in Java.
0
votes
2answers
22 views
Do I need to use multiple AsyncTask subclasses?
My app has FTP functionality and now I want to implement a ProgressDialog for the various operations (Connect, download, upload, file list etc.)
I found this snippet here on stack and it seemed like ...
0
votes
1answer
31 views
Calling method in other thread QT/C++
Is possible call method in background thread in same class? Using C++/QT without c++11.
Or repeatedly everly 5 seconds run foo2.
Example
class MyClass
{
public:
void foo(...)
{
...
0
votes
0answers
11 views
How to stop a celery task from being executed
Using celery on MongoDB, we want to be able to stop task execution. For instance when task fails, and we are waiting for a fix.
What we would need would be a revoke but on a task_name not task id.
I ...
0
votes
1answer
78 views
How to kill multiple processes
I need some help, Within a program I am creating! I have a simple task manager where i can kill a single process! However, i need it so I can kill multiple processes, been stuck a few days and a ...
0
votes
1answer
42 views
Task queue for wp8?
What is a correct way to queue complex tasks in wp8?
The tasks consists of the following:
Showing a ProgressIndicator through updating a model variable
Fetching or storing data to a wcf service ...
0
votes
1answer
30 views
java stop a timer in a task
In Java, I am using the following code for a Timer:
Timer timer = new Timer("WeatherUpdate");
MyTask t = new MyTask();
timer.schedule(t, 10000, 10000);
class MyTask extends TimerTask
{
public ...
4
votes
1answer
63 views
Get the result for the last Task<> ( continuation)?
I have this sample code :
Task<int> t1= new Task<int>(()=>1);
t1.ContinueWith(r=>1+r.Result).ContinueWith(r=>1+r.Result);
t1.Start();
Console.Write(t1.Result); //1
It ...
1
vote
1answer
14 views
Outlook add a task
I need some help please. I have managed to create a task in outlook using VB and SendItem. My problem is the code I'm using is creating two tasks and not just the one I want.
I have tried removing ...
0
votes
1answer
11 views
grunt js tasks and files naming with multiple dots
I'm uglifying files with one to one mapping like this:
plugins: {
files: [{
expand: true,
src: '*.js',
cwd: 'Scripts/v1/Plugins',
dest: ...
3
votes
4answers
58 views
C# task factory timeout
I have to execute a long process operation in a thread and continue by returning the result to a function. Here is my code :
Task<ProductEventArgs>.Factory.StartNew(() =>
{
try
...
0
votes
1answer
12 views
Executable can not send an email when called by Task Scheduler
I have written a C# .net executable that sends an email through an outlook exchange server. Everything works fine when I run it manually, but when I use a scheduled task to call the executable it ...
0
votes
0answers
26 views
Handle openmp task as objects, save in list
I have an application where I need to create dynamically tasks inside a recursion which should be saved in a data structure (suppose list), so that other handler threads can "pick up a task from the ...
1
vote
0answers
22 views
Implementing event triggered action on Filezilla FTP server
I am using an opensource Filezilla FTP server that does not support event triggered actions. I want to build a component for handling the rules, based on the file creation event in a folder that will ...
3
votes
3answers
86 views
AsyncAwait causes unexpected method behavior, Methods runs in wrong thread if called from constructor
I'm trying to do some time consuming actions without freezing the GUI Thread. The UpdateSomething Method is called in two places once in the constructor of my ViewModel and once on button click ...
0
votes
0answers
31 views
IntentService calls twice on one click
On button click on the ActivityD I start IntentService:
Intent intent = new Intent(this, DownloadService.class);
intent.putExtra("EVENT", Const.BC_EVENT_UPDATE);
startService(intent);
and request ...
2
votes
1answer
42 views
Handle tasks when activity is stopped in monodevelop
I am developing an android app using Xamarin and I am having issues using background threads. In their Multitasking demo (http://docs.xamarin.com/samples/MultiThreading) the authors create a task that ...
0
votes
1answer
19 views
Unobserved task exception handling with TopShelf
I am using TopShelf framework which is just working great.
However I am having great trouble figuring out how to register a top level exception filter for unobserved task exceptions (i.e subscribing ...
0
votes
0answers
11 views
Sharepoint Designer Set Task Field drop-down is showing empty [migrated]
Using SPD 2010 I created an Approval process. I have added few custom field to my task list and now under "Before Task is assigned", the action "Set Task field" is not showing anything on the ...
0
votes
1answer
22 views
Gruntjs: How to make copy task to copy only changed files on watch
So on grunt-contrib-watch plugin info page, there is an example on how to make jshint run only for changed file.
grunt.initConfig({
watch: {
scripts: {
files: ['lib/*.js'],
tasks: ...
2
votes
1answer
40 views
Task that do no operation
an example first
I have an interface IAnimation which expose the method Task BeginAsync() which should start the animation and return when it's completed.
What if I want to implement a null animation ...
0
votes
1answer
28 views
Ajax $.post method for load project tasks in fullcalendar
Good morning,
I'd like to add a fullcalendar to my mvc project.
The problem arrives when I try to encode the json with the project tasks. The code that I use is the following:
proyectosModel.php
...
1
vote
0answers
32 views
Android sequence task
I have code like this
public class RestaurantListFragment extends ListFragment {
ArrayList<Restaurant> restaurants;
SQLDataHelper dataHelper;
GPSTracker gps;
public View ...
0
votes
0answers
15 views
Why u_area is removed in FreeBSD and NetBSD
I had been heard that There is member called u_area in the proc structure on BSD.
So I tried to find u_area, but only to fail.
Anyone who knows why the u_area was removed on proc structure?
2
votes
2answers
29 views
What's the difference between using Task and Task<TResult> in C#
Hi I'm making some experiment to understand Tasks. Here what I stumbled upon:
static void Main(string[] args)
{
Console.WriteLine(String.Format("Master in the thread {0}", ...
0
votes
1answer
22 views
Variable changes during Task Start
I am really confused. I run the following code to execute two task, which work on separate folders, thats why I give them index. Unfortunately, when I run the code below, index passed to ...
0
votes
2answers
49 views
Getting a ratio of completed tasks to total tasks in Asana
I'm creating a panel for Panic's StatusBoard to show projects from my workspace, with the ratio of completed tasks to total tasks.
I can do this currently, based on what I'm seeing in the API Docs, ...
-1
votes
0answers
12 views
task coupling in OS [closed]
let us consider a scenario where two tasks are running concurrently. there is a possibility that these two tasks might get coupled with each other.These two tasks might be coupled either tightly or ...
0
votes
0answers
67 views
What are the best practices regarding ThreadPool? Using Python multiprocessing API
I hope this is not off topic.
I am writing a python script that has a heavy workload, so I decided to use the Python multiprocessing ThreadPool API.
I am using that in this way:
pool = ...
0
votes
1answer
24 views
Custom Gradle Task Fails - Can't Find GitPush
I'm trying to push to a remote git repo in a Gradle task. The best way I've found is to use the plugin Gradle-Git found here: https://github.com/ajoberstar/gradle-git
I'm basically just trying to be ...
0
votes
1answer
35 views
Call a method from time on every day
Hi I have a full screen app;
Firstly
I want eg. 6pm hide all oject then show again a specific time, everyday repeatt it. just it's called depends on device's time?
Second one is I want to send status ...
1
vote
0answers
20 views
Update github markdown Tasklists ( GFM ) via commit
As you know you can create a tasklist in GFM (github flavoured markdown) by using the tags
- [ ] for unchecked task
- [x] for a checked task
I was wondering if it is somehow possible to check a ...
5
votes
0answers
86 views
25 concurrent async WCF calls to orchestrate using Tasks
I have an application (.NET 4.0) that loads administrative data on startup. I have to make 25 concurrent async WCF calls, some of them are quick (40ms), some others take longer to execute, up to 882 ...
0
votes
2answers
37 views
Trying to modify GUI by another task
I've been trying to modify some GUI elements before/after a TCP connection that i'm trying to execute synchronously and assynchronously.
public async void ConnectAsync(String h, String p, String n)
{
...
0
votes
2answers
70 views
How to add a custom tracking field in Alfresco Activiti Workflow
My aim is to add a custom field in a workflow which tracks the inputs during the workflow steps as the bpm:comment property.
So i tried to add a simple custom property field in bpm-model:
<type ...
0
votes
3answers
42 views
Grouping Task into Task[]. Why do we need it?
Can someone explain if there is any difference between
Task[] taskArray = new Task[]
{
Task.Factory.StartNew(() => GetData1()),
Task.Factory.StartNew(() => GetData2())
};
and just
...
0
votes
1answer
28 views
Powershell - Task Manager - Permissions?
I've wrote a script that reads all mail from an Exchange inbox and writes all sort of output (.txt files, folders, ..). Everything is working fine when I run this in the powershell ISE. The problem ...
0
votes
0answers
30 views
Is there any different when use custom partition in Parallel.For or Parallel.Foreach?
If use custom partition,the Parallel.For and Parallel.Foreach both like this:
Parallel.For/Foreach(Partitioner.Create(...),range=>{
range.Item1;// bottom point
range.Item2;// top point
...
1
vote
2answers
63 views
Understanding System.Threading.Tasks behavior
I am currently trying to do some performance optimization by using Tasks to take advantage of parallel threading in .Net 4.0.
I have made three methods that returns collections of some objects or ...
0
votes
0answers
21 views
What's the difference between php's gearman job and task
I'm trying to understand gearman but until now I can't figure out what's the difference between task and job.
I'm trying to create a client which will parse periodically ( every 10 minutes ) a xml ...
-1
votes
0answers
12 views
Create a task in taskschedualer, with batch file, that will start another batch file three days after the day the task was made [closed]
The title has the question.
Another question would be "how to create a task in taskschedualer, with a batch file, that only runs once and then never again and/or deletes itself.
2
votes
1answer
25 views
How to pass a value to a anonym method in Task.Factory
I'm using a construct like that:
string myurl = "http://google.de";
Task.Factory.StartNew(() =>
{
MessageBox.Show(url);
});
How to pass myurl to the anonym function?
3
votes
2answers
90 views
Ada: select then abort statement
I have a question regarding the "select then abort" language construct in Ada. The task I'm using looks something like:
select
delay 1.0;
do something with the partial result;
then abort
loop
...
0
votes
1answer
27 views
Chrome Cron Job on Windows
I wonder if there are any way to setup a cron job on Google Chrome to be run every 2nd hour AND when the cron is complete, it automatically closes the window?
I currently have a cron job setup to go ...
1
vote
0answers
20 views
what might delay my celery tasks?
lo guys,
i have a lil problem and maybe someone could help me to figure out what exactly is happening here:
i have thousands of the same tasks which should execute in milliseconds and right after ...
0
votes
5answers
59 views
Instancing a new thread in Spring to execute tasks periodically
I have a dashboard made with Spring that must control some task executions. The basic idea is to have a thread to send this tasks periodically to remote trackers. How can I instance this thread? I've ...
1
vote
3answers
33 views
Task Execution and wait for tasks to finish: Java
There is a generic queue of tasks where new tasks get added. I want to write code that will create more work in terms of tasks by adding them to the queue. The task that added the work to the queue ...
1
vote
1answer
52 views
Cancel a task in the middle
I have a question about canceling a running task. I read all about the CancellationTokenSource , but when using it you have to check in the code if such a request exists.
When we’re dealing with ...
0
votes
2answers
45 views
Scheduled task run .bat once a week Win7
I need to have a .bat run once a week when I log onto the computer. I tried several things and if im not logged on then the .bat fails. but works if I am logged on when its scheduled to start. What ...
0
votes
1answer
23 views
What is the easiest way to run windows cron job
I'm currently using windows 7 with apache, php, and mysql. I understand on windows, task scheduler is the equivalence of cron jobs on linux/unix systems. I'm wondering what the easiest way to run a ...
0
votes
1answer
44 views
Code should be throwing an exception but it doesn't
The below code posts an image to a Facebook page. However, when it fails (for whatever reason), it is not throwing any exceptions, so I cant find out the root cause of the failure (only a generic ...


