The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
23 views

How to properly cancel a BackgroundWorker

I've got a GUI form which is acting as the main thread, while I've got a different class for the actual work which is needed to be done. Is there a way to properly check the CancellationPending ...
-2
votes
0answers
15 views

Facebook Account Cancellation [closed]

i had a Facebook account and i got it blocked from the text messaging log in option about 2 years ago, i re send my SMS code and never received it so i gave up and create another account. The e-mail ...
1
vote
3answers
54 views

Using the default Scheduler in Akka, do I need to manually cancel events when the target actor stops?

When using the methods on the default Akka system scheduler (context().system().scheduler().schedule() from inside an actor), and one of the overloads accepting a destination actor, do I need to ...
1
vote
1answer
72 views

Numerical Problems with cancellation in C++

I do have a problem with cancellation in floating point arithmetic. I know where the problem lies, but I can't think of an efficient solution. Here is my problem: I have a particle simulation in 3D, ...
0
votes
3answers
74 views

How to poll from worker thread for cancellation

I have a UI which spawns off a background worker thread which performs a complex tree of tasks and sub-tasks that takes about a minute to complete. A requirement is that the background worker task ...
2
votes
0answers
83 views

Cancel action executing

I have a page with filters and 2 buttons: Generate and Cancel. So, when I click on the Generate button I go to Results action. When I click on the Cancel button I want to cancel my previous reqeust in ...
0
votes
0answers
42 views

Disable alarm when several exist

I need to implement an alarm management. I tried to look an example with the application "https://play.google.com/store/apps/details?id=za.co.neilson.alarm", for which, author published the source ...
0
votes
2answers
110 views

AsyncTask is not cancelling the long running operation in android

I have to download huge amount of data from server. It is taking minimum 10 seconds to download. Here is my code to download using asyntask class. And I want to cancel the downloading operation ...
0
votes
2answers
86 views

How to cancel a task that has native code (C/C++)?

Background I have a short yet heavy task that uses NDK (JNI) in order to do some bitmap manipulation. On some cases, I need to cancel the task and go to other things. However, since the task uses ...
1
vote
1answer
64 views

'finally' actions for coroutines

Imagine I have a coroutine which uses the implementation of Loader included in the CM docs, and I use it to show a busy indicator on my page Now imagine the user attempts to add an object which ...
0
votes
2answers
325 views

Cancellable remote processes and capturing output

I'm trying to use PowerShell via its C# API to do the following: start remote processes terminate them capture standard and error output of remote processes (not after the process terminates, but as ...
1
vote
0answers
20 views

Alternating series: Problems with floating point precision

I have a list of numbers x obtained from measurements. I need to calculate the quantity where a is a positive number. Unfortunately, the individual terms of the sum can be very large and the sign ...
3
votes
1answer
152 views

Using the cancellationToken without Task.Wait()

I have a winforms app with a long running task and two buttons. One button Start and one Stop. A new task with a cancellation Token starts when I press the start button. And if I press the Stop ...
1
vote
1answer
106 views

Why using Tasks.Wait() rollback events and using a cancelation token doesn't

So what I don't understand is what happens in the following application: class Program { static void Main(string[] args) { Console.WriteLine("TaskVersion:"); Task t = new ...
0
votes
2answers
282 views

An exception of type 'System.OperationCanceledException' occurred

I was implementing a Parallel.ForEach loop to do some work, but I bounced into a problem due to an unhandled exception, while I thought I handle the cancellation. To try and get the finger on the ...
3
votes
1answer
109 views

Checking if a Java Timer is cancelled

Why is there no isCancelled method for a java.util.Timer object? I would like to schedule a task if the Timer has not been cancelled, and run it directly (on the same thread) if it has been ...
1
vote
1answer
71 views

Providing cancellation if polling CancellationToken is not possible

Here's a (silly) example of a method that blocks the caller's thread but does not support cancellation: Public Sub WorkUntil5() Threading.SpinWait.SpinUntil(Function() Now.Hour >= 17) End Sub ...
0
votes
1answer
32 views

ContentProvider: How to cancel a previous call to delete()?

I'm using a custom ContentProvider. For querying, there is a CancellationSignal (API 16+) which can be used to cancel a previous call to query(). My question: How can I archive that with delete()? ...
0
votes
2answers
108 views

Async Repository & CancellationToken

We're moving to .NET 4.5 and I'm considering adding async to my repositories: interface IRepository<T> { T Find(int id); Task<T> FindAsync(int id); IEnumerable<T> ...
5
votes
5answers
107 views

Proper way of cancel execution of a method [duplicate]

Possible Duplicate: How do I abort/cancel TPL Tasks? I have a method that takes some time to execute therefore I return the result as a callback. My method looks like: public static void ...
0
votes
4answers
524 views

Stopping a Thread, ManualResetEvent, volatile boolean or cancellationToken

I have a Thread (STAThread) in a Windows Service, which performs a big amount of work. When the windows service is restarted I want to stop this thread gracefully. I know of a couple of ways A ...
2
votes
1answer
201 views

How to implement CancellationToken support in DropNet?

I want to asynchronously access DropBox API in a MonoTouch app. I thought it would be convenient to use DropNet which itself relies on RestSharp. Both libraries work well but DropNet overloads that ...
1
vote
1answer
273 views

Stop an HttpURLConnection connecting

This question was asked and answered some time ago link. However the answer did not help me yet. I am in sort of the same position as the OP of the other post: I have an Asynctask in which I make a ...
0
votes
1answer
126 views

Canceling background task during WPF XBAP application exit

I have a wpf xbap application that downloads some data in background. There is a need to stop downloading and flush cache on application exit. Now it is implemented as follows : App.xaml : ...
1
vote
1answer
53 views

non-immediate Task cancellation, restarting, and busy indicators

I have a background async Task that is fired from a button click. I have an IsBusy property that is updated when the Task starts and within a finally block to account for cancellation or completion. ...
0
votes
1answer
42 views

Rails Cancel Confirmation Reason

I have an application, which contains calls. I want to be able to cancel the call and supply a reason for the call cancellation. So far I have my cancel action working in the controller, but I'm ...
2
votes
0answers
100 views

How to cancel Task without CancellationToken.IsCancellationRequested?

I am developing a WPF application with C# 4.0 where some user-specific code will be compiled at runtime and then executed inside an AppDomain. The process might take 10 ms or 5 minutes. The AppDomain ...
1
vote
0answers
170 views

Android File Upload Queue with Cancellation support

We are developing an Android application, where there is a need to upload several photos to our server in an asynchronous way. Consider that as soon as a picture is taken, it will start being ...
2
votes
1answer
210 views

How to cancel web service request within task, and do some stuff when cancel happened

We have a tree, and when user click on any node, it will query data from web service, and displace the result. However, sometimes it take times. So I try to wrap the web service call in a task. I ...
8
votes
1answer
411 views

why does pthread_exit throw something caught by ellipsis?

if the function called by pthread_create has the following structure try{ ...code.... pthread_detach(pthread_self()); pthread_exit(NULL); }catch(...){ std::cout<<"I am ...
0
votes
1answer
86 views

Linux POSIX in C program fail in cancellation threads

I'm writing a program which reads portions of data in different threads then finds a pattern within them. But before that (the problem occurs in code below) I just wanted to check whether threads ...
1
vote
1answer
267 views

WIN32 Socket API: Canceling Send/Recv on socket using event-based completion notification

using socket with the overlapped operation selected the event-based completion notification; Have 2 events, one for data, the other to cancel long send/recv: HANDLE events[] = { m_hDataEvent, ...
6
votes
2answers
350 views

How to implement cancellation of shared Task:s in C#

All, here is a question about design/best practices of a complex case of canceling Task:s in C#. How do you implement cancellation of a shared task? As a minimal example, lets assume the following; ...
1
vote
1answer
265 views

Multi-Threading Cross-Class Cancellation with TPL

All, I have a long running process that I run on a background thread (with cancellation support) using the Task Paralell Library (TPL). The code for this long running taks is contained within Class ...
1
vote
1answer
3k views

Android Speex echo cancellation problems

I have a basic audiorecord-audiotrack, udp packets voice chat between two android devices. It works, but I have a bad echo. I'm trying to remove the echo using Speex ported to android by JNI. The ...
1
vote
2answers
1k views

How to Correctly Cancel a TPL Task with Continuation

I have a long running operation which I am putting on a background thread using TPL. What I have currently works but I am confused over where I should be handling my AggregateException during a ...
0
votes
3answers
596 views

Thread.Abort() stucks at NetworkStream.Read?

I have a file transfer application (server-client) ... while sending a file, i want to enable cancellation. Client Cancel the SendFile method that it works by backgroundworker then it sends a command ...
1
vote
2answers
1k views

how to cancel DoWork in Backgroundworker

i know this's not the first question about Canceling BackGroundWorker but i didn't find the answer to solve my problem. i have a method that sends file .. im using backgroundworker to call it ..So how ...
3
votes
2answers
384 views

TPL How to Correctly Cancel a Task

I have the following task cancelSource = new CancellationTokenSource(); token = cancelSource.Token; string strDbA = textBox1.Text; string strDbB = textBox2.Text; // Start duplication on seperate ...
1
vote
1answer
165 views

Server based SwingWorker does not Stop

I have a boolean variable to control the execution of the server (start/stop) : private boolean ecoute=true; here is my class: sw=new SwingWorker<String,Void> (){ protected String ...
10
votes
1answer
261 views

Is there any movement towards specifying interaction of C++ exceptions and pthread cancellation?

The GNU C library uses DWARF2 unwinding for pthread cancellation these days, so that both C++ exceptions and pthread cancellation cleanup handlers get called through a common call frame unwinding ...
1
vote
2answers
886 views

How to cancel GetConsumingEnumerable() on BlockingCollection

In the following code I'm using the CancellationToken to wake up the GetConsumingEnumerable() when the producer is not producing and I want to break out of the foreach and exit the Task. But I dont ...
1
vote
1answer
73 views

Support newer .NET framework features in library used in older framework version

I have an asynchronous library which is compiled under .NET 3.5, since it's used by .NET 3.5 applications, but I want to be able to deal with .NET 4.0 CancellationTokens if someone wants to pass one ...
7
votes
1answer
880 views

How can I wait on tasks without throwing TaskCanceledExceptions?

I have a method that creates some Tasks, and then waits on them with WaitAll before returning. The problem is, if those tasks got canceled, then WaitAll throws an AggregateException containing lots of ...
0
votes
1answer
791 views

boost::asio::io_service::run() is not exiting when i call boost::asio::io_serive::stop()

Hi I having written one simple application which uses the asynchronous socket functions. I am facing some problems while closing the socket. I am using 5 second timer before calling the ...
5
votes
5answers
704 views

Active noise cancellation

I have programed a voice recognition program and I am have problems with the mic hearing me, over the computer playing music. I need software that can filter out the sound leaving the speakers from ...
2
votes
3answers
1k views

How to cancel an ExecutorService in java

I wrote an application that runs some threads using ExecutorService and waits until they finish like this: ExecutorService exService; exService = Executors.newCachedThreadPool(); ...
1
vote
1answer
159 views

How to cancel long-running operations that require to start on the server side (rather than initiated by the client)

I have a class that exposes cancellable events according to the convention of raising an event before the state of the object changes and an event once the state is changed. The before-change event ...
1
vote
1answer
1k views

Cancel ThreadPool .QueueUserWorkItem Task

I need to cancel a background task started using ThreadPool.QueueUserWorkItem(...). I know a BackgroundWorker has constructs especially for this sort of thing, but I believe it's overkill in this ...
0
votes
1answer
597 views

How do I cancel an edit in the Silverlight DataGrid when a validation error has occurred?

I have DataGrid and during a cell edit, a validation error occurs (my binding throws an exception and the error is correctly displayed to the user). The user then chooses to just click somewhere ...

1 2