Tagged Questions
0
votes
1answer
30 views
How to wait for multiple listeners with timeout
I'm having the following problem:
The main thread runs code (that is being called a few times every second) of my application, and at some point it notifies a list of listeners before performing a ...
0
votes
0answers
43 views
Random TimeOuts in vb.NET Thread Code (Task Factory)
I am working with a big application. It starts at the beggining of the form declaring and starting some threads:
Thread1 = New Thread(AddressOf Thread1Sub)
Thread1.Start()
Thread2= ...
1
vote
0answers
44 views
OverbyteICS HTTP timeout when used in different threads
I've been trying to figure this error our for about 4 days now. I'm using Delphi XE and have created a little tool for translators to use. I got the idea of using the Microsoft Translation API to ...
0
votes
3answers
67 views
Call a method after timeout occurs
I have tried to implement timeout in the code. Basically I want to start the timeout and if timeout occurs it should call a method.
Pseudocode way:
in bar function
start timeout ...
0
votes
1answer
45 views
Connection Timeout but Job still running
I have a IIS website going for internal job processing. the job will take about 10 mins. When the user click the button to start the job, after about a minute the whole page whipe white and showing ...
0
votes
1answer
75 views
what is best way to implement thread maximum execution time (in python/gtk)?
What is the best known practice to implement a thread job timeout (ie: kill the job after a maximum of X seconds) ?
I wrote the following python code. I read a lot of different way to implement this ...
4
votes
1answer
110 views
C++ 11 alternative pthread_cond_timedwait
I need to make a thread waiting until either
a timeout is expired, or
a variable is changed by another thread
After some research I've found out pthreads got pthread_cond_timedwait which could be ...
0
votes
0answers
55 views
Multithreading many web requests in VB.NET
Private Sub threadimportbtcUSD()
Do
Dim postReq As HttpWebRequest = DirectCast(WebRequest.Create("https://btc-e.com/api/2/btc_usd/depth"), HttpWebRequest)
Try
...
0
votes
4answers
120 views
java - how to kill a Process if it exceeds an alloted time
I am wondering what the best way is to detect/kill a process if it exceeds a predefined time. I know an old way was to use the watchdog/timeoutobserver class from the ant package. But this is ...
0
votes
1answer
125 views
Java - how should I detect/kill a process if it hangs (previously used watchdog/timeoutobserver)
I am in the proces of updating some old code and am not sure about the most optimal way to replicate the Watchdog/TimeoutObserver functionality below. However, this is an old way of doing it and I am ...
2
votes
0answers
369 views
HtmlUnit WebClient Timeout
In my previous questions about HtmlUnit
Skip particular Javascript execution in HTML unit
and
Fetch Page source using HtmlUnit : URL got stuck
I had mentioned that URL is getting stuck. I also ...
2
votes
1answer
697 views
Java: Set timeout for threads in a ThreadPool
I want to set timeouts for threads which are executed within a thread pool. At the moment I have following code:
ExecutorService executor = Executors.newFixedThreadPool(8);
for(List<String> l: ...
1
vote
3answers
560 views
Using Timeout to avoid deadlock in Java multithreading
One of the strategy to avoid deadlock situation in Java Multithreading is using timeout.
Suppose, one thread has acquired lock on one resource and now waiting for lock on another resource. After ...
0
votes
3answers
108 views
Java timeout a set of instructions
Is it possible to set a timeout for a set of instructions in java? I have the following:
new Thread(new Runnable(){
public void run() {
//instructions
...
0
votes
2answers
391 views
Add a decimal millisecond delay to Java code
I want to add a delay of 0.488 ms to my java code. but thread.sleep() and Timer functions only allow a granularity of millisecond. How do I specify a delay amount below that level ?
0
votes
0answers
91 views
Regarding tcpclient timeout
I have tcplistener on port 21 waiting for incoming connections.When tcplistener receives an incoming request,i establish a control connection through instantiating a new Tcpclient,the FTP command and ...
1
vote
2answers
314 views
Session - timeout - idle handling Multi-treads in Java
I am trying to get my head around session - timeout - idle handling Multi-treads in Java.
I have a server & client application comunicating via telnet where I need to check if the user has been ...
2
votes
3answers
120 views
Why aren't my threads timing out when they fail?
So I asked a question a little while ago: Over here that asked the question "How can I make my threads get killed if they take too long"
I have implemented the solution mentioned there but under ...
0
votes
1answer
59 views
Time out by which search method returns otherwise it will throw time out message
I want execute a search method by java main and want to implement the
Time out by which search method returns otherwise it will throw a time out message.
How can I achieve this time out ...
0
votes
1answer
129 views
how to interrupt timeout long running method in nodejs?
Using the languages with built-in support for threads this seems to be be a fairly easy task but,
Is there any way to terminate/timeout a long running method / infinitely recursive method ?
For ...
0
votes
1answer
142 views
Python - How to make a background response timeout function
I've made a Farkle Jabber game bot using Python SleekXMPP library.
In multiplayer mode, a user plays against a user by turns. I'm trying to make a timeout duration so that if your opponent didn't ...
2
votes
0answers
839 views
I am getting WebException: “The operation has timed out” immediately on HttpWebRequest.GetResponse()
I am scraping the content of web pages heavily in a multi-thread environment. I need a reliable downloader component that is tolerable to temporary server failures, connection drops, etc. Below is ...
0
votes
2answers
162 views
Getting the time remaining before event.wait is done in Python
I'm writing a Python script in which i have a thread running that calculates some values and creates a graph every hour. What I would like to do is have a function in that thread that tells me how ...
0
votes
2answers
1k views
Handling a Long Running jsp request on the server using Ajax and threads
I am trying to implement a solution for a long running process on the server where it is taking about 10 min to process a pdf generation request. The browser bored/timesout at the 5 mins. I was ...
7
votes
3answers
2k views
Python - do something until keypress or timeout
I've nearly solved this problem but I think I need a nudge in the right direction.
I want to do something every five seconds until either a certain amount of time has elapsed or the user interrupts ...
5
votes
4answers
201 views
Can it be acceptable in Java to use Thread#stop() to kill a thread that is running wild?
Regrettably there is no way to specify a timeout when using a regular expression on a String in Java. So if you have no strict control over what patterns get applied to which input, you might end up ...
1
vote
1answer
1k views
g_timeout_add inside a GThread
I'm trying to add a timeout source specific to a particular GThread.
In the main thread, I can create a GMainContext (g_main_context_new) and add a timeout (g_timeout_add). However, when I try to do ...
1
vote
1answer
1k views
Multi-threaded TcpClient send timeout after long open connection
I'm having a problem with a TcpClient closing with a send timeout in a multi-threaded application after the connection has been open for a long period of time (several hours or overnight). The ...
0
votes
1answer
336 views
thread.interrupt_main() doesn't work when waiting for input
I've read about this technique to timeout blocking IO operations, the problem is that it doesn't seem to work. for example:
import thread, threading
def read_timeout(prompt, timeout=10.0):
timer ...
0
votes
2answers
180 views
How to determine that the current client socket has closed and connect to another server?
I want to implement a handler in my code to allow a client to automatically connect to a second instance of a server on the same network if the server connected to this client is not responding after ...
1
vote
2answers
285 views
System.Threading.Timer causing other Timers to fall behind
My first post here, but this site has answered many questions that I have had in the past. Hopefully I can give enough detail to explain the issue I am facing as I don't fully understand how all .NET ...
1
vote
2answers
1k views
Java: ExecutorService with Callables: Timeout: future.get() leads to direct break of program
I use the ExecutorService in Java and I noticed a behaviour I dont understand.
I use Callable and when I invoke my threads (classes that implement Callable) I set a timeout. Then I wait for the result ...
3
votes
2answers
129 views
Adding a timeout function to a swingworker
I am going to have to implement some functionality to my application soon that timesout a swing worker based on a user dictated length.
I was wondering if i could extend the swingworker class and ...
7
votes
1answer
746 views
When will ASP.NET kill a new thread?
I've tried some googling on this subject but i would like to have som more info.
I'm trying to start a new thread inside an ASP.NET app that will take care of some work that takes long time. If I put ...
3
votes
2answers
736 views
Thread was being aborted in long SP executing?
I've created a asp.net page which execute a very long sp (about 1 hour of sp execution time in SSMS).
there is an Admin.aspx which activate this SP.
in web.config I've added:
<httpRuntime ...
3
votes
2answers
172 views
Delaying an action for a period of time
I am currently working on a screensaver launcher, but I want to delay the activation of the screensaver for a period of time to ensure the mouse position is still in the position to activate it, to ...
0
votes
1answer
262 views
Compact framework socket timeout
I have problem detecting the loss of socket connection in CF app for PDA device.
I have static class that has static methods for communication (Connect(), Write(), Disconnect()). Static because all ...
1
vote
1answer
215 views
VB.NET - Limit time an operation can take
How can I limit the length of time an operation is allowed to take?
I have an external library that processes image files. I'm running it against thousands of images, and every now and then the ...
0
votes
1answer
80 views
What's a Reasonable Length of Time to Timeout a Ruby Thread?
I've got a need to retain the data and keep a Ruby program waiting for a response for anything up to a couple of days. I'm thinking about implementing this using threads (there may be a number of ...
1
vote
2answers
966 views
Limit timer thread execution time
How can I restrict timer thread execution time? I have long running timer work that should work no more than 30 seconds.
2
votes
1answer
517 views
Using ruby timeout in a thread making a database call
I am using Ruby 1.9.2.
I have a thread running which makes periodic calls to a database. The calls can be quite long, and sometimes (for various reasons) the DB connection disappears. If it does ...
2
votes
1answer
171 views
How to avoid a manually started thread from dying?
I have a process on a system that runs on IIS, it takes hours to finish so it runs on a thread.
The problem is that this thread is dropped after some time because the IIS process timeout (no ...
2
votes
3answers
681 views
program timeout in windows for python
Hi I've seen a bunch of questions here on SE that deal with similar issues but I find much of the answers to be unclear and confusing. My question is very simple. How on a Windows platform can I kill ...
4
votes
1answer
160 views
Can I make a section of code time out?
I'm working with a class that makes a remote connection to a server. A problem that I'm running into is if the connection doesn't get a response, it'll wait until it does.
This class does not have a ...
1
vote
1answer
463 views
CURLOPT_TIMEOUT not working for curl_multi
The CURLOPT_TIMEOUT option doesn't seem to work when there are multiple handlers:
I execute the handlers via this function:
function ExecHandle(&$curlHandle)
{
$flag=null;
do {
...
17
votes
6answers
1k views
right way to run some code with timeout in Python
I looked online and found some SO discussing and ActiveState recipes for running some code with a timeout. It looks there are some common approaches:
Use thread that run the code, and join it with ...
1
vote
1answer
176 views
General question about parallel threading in C++
I haven't used threading in my program before. But there is a problem I am having with this 3rd party application.
It is an offsite backup solution and it has a server and many clients. We have an ...
4
votes
2answers
2k views
VS UnitTest - Thread was Being Aborted
I have a set of Unit Tests run in parallel (this is important, it works fine if the tests are run single-threaded) which makes calls to WebClient to download a resource that consistently takes over 30 ...
2
votes
1answer
1k views
Perl threads with alarm
Is there any way to get alarm (or some other timeout mechanism) working in perl (>=5.012) threads?
4
votes
6answers
2k views
Handling a timeout in EJB3 without using threads
I have the following situation. I have a job that:
May time out after a given amount of time, and if so occurs needs to throw an exception
If it does not time out, will return a result
If this job ...




