The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
46 views

SeleniumHQ operation wait

I'm developing some test using SelemiumHQ (2.32.0). The application is developed in Java and it uses struts2-jquery plugin. My page is made of two parts (which are managed using div tags): a top ...
0
votes
0answers
37 views

Kernel-Mode Constructs and GC?

The WaitHandle class declaration is : public abstract class WaitHandle : MarshalByRefObject, IDisposable {...} Dispose internally calls the Win32 CloseHandle function But I've heard that I should ...
0
votes
1answer
98 views

Waiting for multiple TcpClients to have data available - WaitHandle or Thread.Sleep?

I am writing a server application that will receive data from multiple TCP connections. We would like to be able to scale to ~200 connections. The first algorithm I wrote for this is as follows: ...
1
vote
1answer
66 views

Is the WaitHandle the best option?

I'm working on an MVC application, that uses some Windows Workflow behind the scenes for automation. I have implemented some code to wait for the Workflow to complete. below is a sample app that ...
3
votes
1answer
373 views

Why would WaitForSingleObject miss a signal?

It appears that sometimes WaitForSingleObject will wait for timeout even though the Event has been signalled. The signalling thread receives success from SetEvent() every time. However, the thread ...
0
votes
1answer
144 views

C# Wait Handle for Callback

I have a Problem with some of my Methods and I think, a WaitHandle is the solution. I create a Incident through a API to a Ticketsystem. private void create_Incident(string computer_idn, string ...
1
vote
2answers
54 views

In .Net, how can I do And/Or with Waithandles

I have an array WaitHandle[], corresponding to tasks which all need to be completed before a thread can continue. But I also have another WaitHandle that gets signalled when a user requests an abort. ...
6
votes
1answer
124 views

C# WaitHandle cancelable WaitAll

I have the following code which has the goal to wait for all given wait handles but is cancellable by a specific wait handle: public static bool CancelableWaitAll(WaitHandle[] waitHandles, WaitHandle ...
0
votes
0answers
254 views

c# threadpool wait ManualResetEvent

I am new to the use of ThreadPool. For that I have an application with a structure similar to the Fibonacci example from the MSDN: http://msdn.microsoft.com/en-us/library/3dasc8as(v=vs.80).aspx In ...
5
votes
2answers
237 views

What's the proper way to wait on a Semaphore?

I thought that the following code would let all the 10 threads run, two at a time, and then print "done" after Release() is called 10 times. But that's not what happened: int count = 0; ...
1
vote
2answers
363 views

How can I use WaitHandle awaiting completion of an asynchronous call?

Consider this code: class Program { static void Main(string[] args) { Master master = new Master(); master.Execute(); ...
0
votes
3answers
89 views

WaitHandle is closed when it shouldn't have

This code works, for most of time, so I'm thinking of some race condition. Result class is immutable, but I don't think the issue is with that class. public Result GetResult() { using (var ...
0
votes
0answers
57 views

How to wait for user to complete the data entry before processing with waithandle

I have UI which allows user to enter data, every time when the user enter a data I raise an event saying data changed at this location and put it in a queue. I have a background thread which listens ...
1
vote
1answer
612 views

Calling C# ASMX Web Service

I have an ASMX web service that I need to utilise as part of a piece of work. I am calling this service via an ASPX page to create new entities on a 3rd party system. I have no access to the ...
2
votes
1answer
224 views

How to wait for a thread to finish execution in C#?

I have a function that is called in rapid succession that has a open database connection. my issue is that before one database connection is closed, another instance of the function is called and i ...
1
vote
3answers
1k views

Async/await tasks and WaitHandle

Say I have 10N items(I need to fetch them via http protocol), in the code N Tasks are started to get data, each task takes 10 items in sequence. I put the items in a ConcurrentQueue<Item>. After ...
2
votes
1answer
589 views

How to use waitHandle in vb.net

I have VS2010 and I'm working on a windows form application. So, I have threads created dynamically (depending on user input), the processing for these threads can take quiet a while (days in extreme ...
2
votes
0answers
95 views

Session-like storage option for a non-serializable object?

Background (Skip this part if you want) Feel free to skip over this part if you choose, it's just some background for those who want to better understand the problem At the beginning of one action ...
0
votes
0answers
58 views

Can I set an AsyncWaitHandle to session reliably?

My employer's website makes several calls to an external webservice. Some of these calls take a little while to come back, so I've been thinking about how to reliably async-ify them and set them to ...
1
vote
1answer
2k views

Best approach to Timeout using HttpWebRequest.BeginGetResponse

HttpWebRequest.BeginGetResponse doesn´t respect any Timeout properties from HttpWebRequest(Timeout or ReadWriteTimeout). I read some approaches to get the same results, but I don't know if it's the ...
0
votes
1answer
153 views

creating method or wait()/notify() in android game

So I will describe what I am trying to doing general. I have customers(the number of customers available varies at times due to weather, events, or location) I have a drink stand ( depending on ...
1
vote
1answer
174 views

How could new WaitHandle [] return null? Or does it?

I am using a FluorineFx 1.0.0.17 in my project and working with NetConnection to connect to a RTMP host (Flash Media Server). I am creating a RTMP monitoring probe for PRTG. There is always an error ...
1
vote
1answer
209 views

Alternatives for WaitHandle.WaitAll on Windows Phone?

WaitHandle.WaitAll throws a NotSupportedException when executed on Windows Phone (7.1). Is there an alternative to this method? Here's my scenario: I am firing off a bunch of http web requests and I ...
1
vote
2answers
178 views

Can ManualResetEvent be used to supersede a boolean

This is admittedly an unusual question; I would never recommend replacing a boolean with a ManualResetEvent in typical .NET development. In this case, I already need a ManualResetEvent to indicate ...
0
votes
0answers
174 views

Using pthread_cond_timedwait to print a specified time

Hey, I've got just a small problem related to pthread_cond_timedwait. I've tried implementing it into this piece of code. I can't get the arguments right for timedwait, because I am not too sure what ...
1
vote
1answer
1k views

Linux: wake_up and sleep_on functions

I am trying to learn how to program loadable kernel modules for linux. I was wondering if anyone could tell me what the functions sleep_on and wake_up do? In examples I am looking at &WaitQ is ...
5
votes
2answers
584 views

What does the exit context mean for a WaitHandle.WaitOne mean?

I'm trying to use a mutex to protect access to some hardware from multiple threads, but I'm confused as to what the exitContext parameter means / does: public virtual bool WaitOne ( int ...
2
votes
1answer
273 views

Why does waiting on this Task for 1022 milliseconds work fine but 1023 causes an AggregateException?

Trying to implement a timeout parameter for connecting to a server but I'm not having much luck. Here's my code: client = new TcpClient(); Task task = Task.Factory.FromAsync(client.BeginConnect, ...
1
vote
2answers
528 views

Progress bar to show only during long operations

I am designing an application that fetches data from a sqlite database on the click of a button . I want to display a wait message or progress bar during the time of the fetch only if the process is ...
3
votes
2answers
476 views

Thread persists after application termination due to AutoResetEvent signal in WaitOne state

I have an application that uses an AutoResetEvent (WaitOne/Set) in a queue for processing messages. I'm noticing that when I terminate the a debug session from Visual Studio (Shift+F5) the original ...
0
votes
1answer
184 views

Wrap an AutoResetEvent object in a restricted WaitHandle?

I've built a library that launches a thread to do it's thing and returns a WaitHandle to the caller. Looking at a bug report, I suspect the code that's calling my library is taking the returned ...
2
votes
1answer
694 views

C# Async WebRequests: Perform Action When All Requests Are Completed

I have this basic scraping console application in C# that Asynchronously uses WebRequest to get html from a list of sites. It works fine, but how do I set up a trigger that goes off when every site in ...
1
vote
3answers
701 views

Conditional periodic timer using wait handles

I need a timer equivalent which will periodically execute some specific actions (e.g. updating some progress in the database or checking for new Jobs to execute in a database). These actions are ...
4
votes
3answers
2k views

How do I unblock threads which have called the WaitOne method on an AutoResetEvent object?

Below is a class having the method 'SomeMethod' that illustrates my problem. class SomeClass { AutoResetEvent theEvent = new AutoResetEvent(false); // more member declarations public ...
2
votes
6answers
544 views

When should I use a WaitHandle instead of a lock

In C#, when we should use WaitHandle instead of lock ?
2
votes
3answers
156 views

Is there any reason to use a WaitHandle over a bool to flag for cancellation?

I've inherited a bit of threaded code, and upon reviewing it, I'm finding structures like this (within a background thread method): private ManualResetEvent stopEvent = new ManualResetEvent(false); ...
0
votes
1answer
81 views

.net - IPC - “queue” the oldest process' work to fire first

I have a .Net 2.0 application that processes data, generates Crystal Reports, and then sends the rendered output to a printer. This application is most-of-the-time fired from a Win32 application ...
3
votes
1answer
164 views

Which code pattern is best for handling a cyclical and changeable flow of actions

My scenario is an application working cyclically on real time data and with tigh deadlines. I have a serie of actions to take on data at each cycle. I've actions that take place at each cycle (let's ...
0
votes
3answers
283 views

Multithreading: WaitAll doesn't wait as expected

I have a thread that is calling two separate threads to do somework. Whenever any of the jobs is finished a Waithandle.Set(0 is called and at the end of the parent worker thread I wanted to WaitAll ...
0
votes
2answers
116 views

How to substitute at runtime the WaitHandle that a thread should wait on

I'm wondering how to safely change at runtime the EventWaitHandle that a thread should wait on. Suppose for instance that there are two threads (A and C) that are synchronized through ...
0
votes
1answer
887 views

WaitHandle.WaitAll Runs before all Threads completed - VB.Net 4.0

I'm working on a program that scans a list of servers for different information. Everything is working fine except sometimes I get errors when the threads are done. Either by the scan completing or ...
3
votes
1answer
268 views

Combining Wait Handles?

Bit of an interesting one here I think. I have a class thats in charge of "multiplexing" a number of processing operations onto a fixed number of threads. The typical case is a sort of ...
3
votes
3answers
4k views

Make asynchronous call synchronize

I trying to synchronize a asynchronous call. The regular (async) flow look like: Asking the server for data using telnet: 'Session.sendToTarget(message)' The app move on doing other things.... When ...
1
vote
2answers
1k views

Is there a WaitOne method that essentially calls Reset first?

I'm using an AutoResetEvent where multiple Set calls can be made on an event (Exception handling). There are times when an extra Set is called, thus when the code makes a second call on a WaitOne ...
4
votes
2answers
597 views

When can ManualResetEvent.Set() return false?

According the the MSDN documentation, Set() and Reset() on ManualResetEvent (or any EventWaitHandle) returns a boolean indicator whether or not the operation was successful. Under which circumstances ...
1
vote
1answer
1k views

VB.NET Abort an asynchronous method call after timeout

VB.NET 2010, .NET 4 Hello all, I have a System.Timers.Timer object that does some work on its elapsed event: Private Sub MasterTimer_Elapsed(ByVal sender As Object, ByVal e As ...
15
votes
4answers
4k views

How to check if the WaitHandle was set?

I have a WaitHandle and I would like to know how to check if the WaitHandle has already been set or not. Note: I can add a bool variable and whenever Set() method is used set the variable to true, ...
0
votes
4answers
1k views

Threadpool/WaitHandle resource leak/crash

I think I may need to re-think my design. I'm having a hard time narrowing down a bug that is causing my computer to completely hang, sometimes throwing an HRESULT 0x8007000E from VS 2010. I have a ...
6
votes
3answers
1k views

How do I use WaitHandler.WaitAll in MSTest without STA warnings?

Is there a way to unit test WaitHandle.WaitAll() when using Visual Studio's built-in unit testing solution. When I try and run a test that uses this function within Visual Studio the test fails and ...
6
votes
4answers
442 views

How do you close an application when some WaitHandle is in the middle of a call to WaitOne?

Is there a standard way to close out an application "cleanly" while some WaitHandle objects may be in the state of a current blocking call to WaitOne? For example, there may be a background thread ...

1 2