Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

59
votes
5answers
21k views

What is the difference between ManualResetEvent and AutoResetEvent in .NET?

I have read the documentation on this and I think I understand. An AutoResetEvent resets when the code passes through event.WaitOne(), but a ManualResetEvent does not. Is this correct?
5
votes
4answers
699 views

Queues And Wait Handles in C#

I've had the following code in my application for some years and have never seen an issue from it. while ((PendingOrders.Count > 0) || (WaitHandle.WaitAny(CommandEventArr) != 1)) { lock ...
4
votes
3answers
98 views

AutoResetEvent and multiple Sets

I'm trying to design a data-structure around a stack that blocks until the stack has an item available. I tried using an AutoResetEvent but I think I misunderstood how that synchronization process ...
4
votes
3answers
4k views

C# Threading issue with AutoResetEvent

How to properly synchronize this? At the moment it is possible that SetData is called after e.WaitOne() has completed so d could be already set to another value. I tried to insert locks but it ...
3
votes
1answer
65 views

Learning to implement thread pool - signaled events getting lost when using autoresetevent

I am a strong believer in learning by reinventing. With that state of mind, I set out to implement custom thread pool. The objective that I set for myself was following: To be able to queue work ...
3
votes
1answer
408 views

Win32 reset event like synchronization class with boost C++

I need some mechanism reminiscent of Win32 reset events that I can check via functions having the same semantics with WaitForSingleObject() and WaitForMultipleObjects() (Only need the ..SingleObject() ...
3
votes
0answers
215 views

How to avoid Safe handle has been closed

I have the following code in a test: private void LoadIncomeStatementViewModel() { using (var evt = new AutoResetEvent(false)) { EventHandler handler = (sender, e) ...
3
votes
2answers
94 views

Is the AutoResetEvent type an appropriate choice for an atomic switch?

Suppose I am processing a large amount of incoming data from multiple threads. I may want for this data to act as a trigger for a specific action when certain criteria are met. However, the action is ...
3
votes
3answers
729 views

Lightweight alternative to Manual/AutoResetEvent in C#

I have written what I hope is a lightweight alternative to using the ManualResetEvent and AutoResetEvent classes in C#/.NET. The reasoning behind this was to have Event like functionality without the ...
2
votes
3answers
167 views

Updating an ObservableCollection<T> asynchronously results in hangs, and no GUI update

I'm implementing a visual version of Tracert (as a learning exercise) in WPF where results go to a listbox. The issues are (1) the listbox bound to tracertDataView is not updating, but (2) my entire ...
2
votes
2answers
232 views

Best way for an AutoResetEvent to Wait only when not Set that number of times

I'm probably going outside of the proper design for an AutoResetEvent but don't quite know what to turn to. I want this behavior: var autoResetEvent = new AutoResetEvent(false); ...
2
votes
3answers
1k views

Java's equivalent to .Net's AutoResetEvent?

What should I use to get semantics equivalent to AutoResetEvent in Java? (See this question for ManualResetEvent).
1
vote
1answer
54 views

Whats is the difference between AutoResetEvent and Mutex

I am new to these concepts. But as i am going deeper in threading i am getting confused. What is the significance of mutex, semaphore over autoresetevent. Only difference i came to know with studies ...
1
vote
4answers
65 views

C# waiting for input from another thread using AutoResetEvent

I spent some time searching for an answer to this and found plenty of helpful information in other threads. I believe I've written the code in a way that works, but I am not happy with the outcome. ...
1
vote
1answer
80 views

Is there an easy way to implement AutoResetEvent in C++0x?

I understand I've asked this question before: What is the C++ equivalent for AutoResetEvent under Linux? However, I'm learning that in C++0x, the threading library are made much simpler, so I want to ...
1
vote
3answers
75 views

Dispatcher.Invoke from a new thread is locking my UI

i'm using wpf, there's a button on my ui. when the user clicks it, i have a for loop that runs a new method, on a new thread using autoresetevent. in that method on that new thread, i'm using a ...
1
vote
2answers
73 views

How to wait for an Autoreset event to occur before taking any other action?

This is about the AutoResetEvent in C#. I tried to read other answers but I could not make sense and apply to my scenario. I am not writing any threading application. Just a small application to ...
1
vote
2answers
125 views

AutoResetEvent process?

private ConcurrentQueue<Data> _queue = new ConcurrentQueue<Data>(); private AutoResetEvent _queueNotifier = new AutoResetEvent(false); public void MoreData(Data example) { ...
1
vote
2answers
161 views

C# main thread is blocked by second thread using signaling?

GetFiles creates the second thread which calls CopyFiles, I am just trying to fill the listbox with the file name each time a file is copied, but once code hits line: ...
1
vote
1answer
134 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 ...
1
vote
1answer
208 views

Using AutoResetEvent to signal worker thread

I have a service that is running constantly processing data, it receives requests to process new data through messaging. While it's busy processing new requests get merged together so that they are ...
1
vote
5answers
180 views

AutoResetEvent Reset method

Could someone introduce an use case for AutoResetEvent.Reset() method ? When and why I would like to use this method ? I understand WaitOne and Set but this is quite unclear for me.
1
vote
1answer
101 views

How do I find if the current executed code is on the UI thread?

I am developing a silverlight application and I have a method that should throw an exception if it's ran on the UI thread since it uses AutoResetEvent.WaitOne() without timeout which causes the UI ...
1
vote
2answers
170 views

IObservable - Replacing AutoResetEvent

Just wondering how I can replace the AutoResetEvent in the below? I was trying to think how to do it the RX way or with tasks, but I can see how to do it. public void LogOnResponse LogOn() { ...
1
vote
3answers
412 views

AutoResetEvent not blocking properly

I have a thread, which creates a variable number of worker threads and distributes tasks between them. This is solved by passing the threads a TaskQueue object, whose implementation you will see ...
1
vote
4answers
430 views

Unit-test passes in Debug, but hangs when Run

I have an odd problem. I have a unit test that keeps getting stuck in Run Mode. When I run the same test in Debug, with no breakpoints, the test passes every time. Basically, it is a socket ...
0
votes
1answer
45 views

Windows Phone 7.1: AutoResetEvent does not work with Service Methods?

After adding Service Reference to my Phone Application (for example http://www.deeptraining.com/webservices/weather.asmx?op=GetWeather), I tried to use AutoResetEvent for emulation syncronous method ...
0
votes
0answers
50 views

Timer event does not fire until WaitOne times out

I have a timer that fires periodically to check for new data. Occasionally, I need the timer to fire immediately and I need to wait for timer handler to do its thing before continuing. I tried having ...
0
votes
0answers
83 views

Outlook Add-in - Misterious behavior between AutoResetEvent and Windows Form

I'm having a bad time trying to work with a AutoResetEvent and a Windows Form. The scenario is, I'm using an Outlook add-in to upload emails to a remote database, so I use a ...
0
votes
1answer
107 views

.NET AutoResetEvent: How to know if the process is waiting for (method WaitOne)?

I call in my process method "WaitOne", I need to know another method if the process is waiting. ¿I can I know this about my WaitHandle? Declaration: private static EventWaitHandle WaitHandle = new ...
0
votes
1answer
77 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 ...
0
votes
2answers
412 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 ...
0
votes
1answer
137 views

AutoResetEvent object , waits 60 secs OR event

Im using AutoResetEvent object to block a thread for 60 secs ,, but I would like to block it for 60 secs or AutoResetEvent.set() event CODE : global: private readonly AutoResetEvent _signal = new ...
0
votes
1answer
529 views

Does AutoResetEvent.WaitOne() frees a slot in the thread pool?

I am trying to synchronize an asynchronous method. The main advantage of the async version is that it frees a slot in the thread pool. I would like to keep this advantage in my sync version. When I ...
0
votes
3answers
239 views

Whats wrong with my AutoResetEvent code?

I have this code which seems pretty straightforward but the AutoResetEvent never gets signalled. Nothing seems to get returned from the web services and the WaitAll just times out after ten seconds. ...
0
votes
1answer
398 views

Invocation exception using AutoResetEvent

C# 2005 I am using a background worker to process some login information. However, the background worker has to stop and wait for 2 events to happen. Once these have finished the background worker ...