The autoresetevent tag has no wiki summary.
-2
votes
4answers
101 views
Can my use of System.Threading.Timer be more efficient
I´m looking for some advice about making my code more efficient. What I would like to do is to have a System.Threading.Timer that runs some job every hour or so, the job is not going to be very heavy ...
0
votes
1answer
101 views
Pausing background thread with AutoResetEvent.WaitOne() and .Set()
I have following code. I'm trying to make buttons to main Form which can Pause, Continue and Stop the background thread the downloader is running on (private Thread thread)
Form1.cs
private ...
-1
votes
1answer
82 views
C# AutoResetEvent WaitOne stopped by dispatcher
private void WaitForDriveToBecomeReady()
{
AutoResetEvent syncEvent = new AutoResetEvent(false); //set wait signal to use later
//dispatcher to be able to change stuff in xaml from within ...
1
vote
3answers
51 views
How can I reproduce one of the threads blocking indefinitely (following a post code)?
I am trying to understand the question (and, respectively, the answers to it):
ThreadA and ThreadB both call WaitOne() in that order on the same AutoResetEvent - when the event is set, why does ...
0
votes
0answers
49 views
ResetEvent to Block and Continue Task
I have a scenario where I need a few hundred concurrent work queues. These queues will have data queued in chunks, so a work queue may not have any data to send for minutes at a time, or may be queued ...
2
votes
3answers
50 views
Determine currently executing method
Assume the following code
private AutoResetEvent m_MethodDone = new AutoResetEvent(false);
private void Method1()
{
// Do something
Method2();
}
private void Method2()
{
// All done
...
1
vote
2answers
146 views
How best to dispose a thread that is sleeping because of AutoResetEvent.WaitOne()
I have a windows service that sends email in a one of 5 threads (done to increase the speed the service can send email):
private AutoResetEvent block;
private ThreadedQueue<Message> ...
0
votes
3answers
73 views
Is it safe to call methods AutoResetEvent from different threads?
Is it safe to call methods AutoResetEvent from different threads?
Or should I avoid calls of the object from different threads?
class Test
{
EventWaitHandle wh = new AutoResetEvent(false);
...
0
votes
2answers
150 views
Render Usercontrol while AutoResetEvent.WaitOne()
maybe it is a bad question, but I have a Client App which sends some Commands to the server. I made a little function for sending commands, which simply waits until a message is received over ...
0
votes
1answer
111 views
C# - synchronizing two threads with AutoResetEvent
I'm trying to implement AutoResetEvent. For the purpose I use a very simple class :
using System;
using System.Linq;
using System.Text;
using System.Threading;
public class MyThreadTest
{
static ...
1
vote
1answer
87 views
Why is AutoResetEvent causing memory errors?
Below, you will find the source of my latest coding heartache. It is a small method in a base class that runs methods of derived classes in a secondary thread. This code runs about 5 times in a ...
2
votes
2answers
87 views
How do I tell whether a Windows kernel Event object is auto-reset or manual-reset?
Windows allows the creation of (named) Event objects.
An Event (the synchronization primitive in Windows) can be of type auto-reset (in which case you could say it's kind of a semaphore) or it can be ...
1
vote
1answer
128 views
Wait for a message in a NativeWindow
What I am trying to do is catch and wait for a WM_TIMER message on a window within my process (though one which I have no control of).
I am trying to use an AutoResetEvent in order to wait for the ...
6
votes
3answers
180 views
new AutoResetEvent (true) Usages in C#?
I was wondering ,
Why would I ever want to pass a true in the ctor of AutoResetEvent ?
I create a waitHandle so that anyone who will call WaitOne() will actually wait.
If I instance it with a ...
1
vote
1answer
50 views
Reseting Node Order and Hiding event.srcElement
I am building a custom company hierarchy and need to be able to "Promote" a Div up the ranks in the company chart. I have the trigger nestled as a span inside of each div. The click event is set to ...
-2
votes
1answer
147 views
AutoResetEvent doesn't work by some reason
upd I've found that AutoResetEvent is works as expected. It seems I have exception somewhere inside CalculateAndNotify. So this question is not about AutoResetEvent anymore. But if you can suggest how ...
0
votes
2answers
384 views
Proper Way to Stop App While Threads Are Waiting on WaitOne()
I'm playing around with AutoResetEvent and my app isn't ending, and I think I know why: the threads are still running and therefore the app won't terminate. Normally, in Main(), after I press a key, ...
0
votes
1answer
60 views
Several client waiting for the same event
I'm developing a communication API to be used by a lot of generic clients to communicate with a proprietary system.
This proprietary system exposes an API, and I use a particular classes to send and ...
0
votes
0answers
127 views
How to resume all threads in ThreadPool which paused by WaitOne?
How to resume all threads in ThreadPool which paused by WaitOne?
For example, i have the code below, i open two tabs in firefox and go in they to url /Test2/LongRunningAction and after i open third ...
8
votes
5answers
1k views
AutoResetEvent vs. boolean to stop a thread
I have an object in a worker thread, which I can instruct to stop running. I can implement this using a bool or an AutoResetEvent:
boolean:
private volatile bool _isRunning;
public void Run() {
...
1
vote
2answers
356 views
Check AutoResetEvent state
Is it possible to check how actually AutoResetEvent object was treated? Is it fired by timeout or by calling Set() from another method?
Here is my code.
private AutoResetEvent autoResetEvent = new ...
0
votes
1answer
146 views
Simulating Wait handles in c#?
We can use Wait and Pulse to simulate a ManualResetEvent as follows:
code #1
readonly object _locker = new object();
bool _signal;
void WaitOne()
{
lock (_locker)
{
while (!_signal) ...
1
vote
1answer
189 views
AutoResetEvent causes Deadlock in multithreaded UCMA 3.0 Application
In My Parallel.Foreach Loop I am calling
_helper.subscribeUserEndPoint(loop._contactGrpSvcs);
_helper is the Encapsulating class for the UserEndPoint and all other operations like ...
3
votes
3answers
158 views
AutoresetEvent and Singleton issue
Can someone please tell me what is wrong with the following code? Ideally it should start a thread first and then wait for the set event. Instead of that it does not start the thread and just get ...
0
votes
3answers
259 views
AutoResetEvent being prematurely signalled while running unit test in Visual Studio 2010
I am running a MS unit test in VS2010 to test my multi-threaded application.
The application uses an AutoResetEvent to synchronise threads, which is declared like so:
private readonly AutoResetEvent ...
0
votes
2answers
110 views
incrementing autoresetevent c#
Is there an incrementing AutoResetEvent, or something similar in c# libraries?
How would one go about rolling an efficient implementation of one, or alternatively, address the problem stated without ...
1
vote
2answers
492 views
AutoResetEvent - two set calls quickly doesn't guarantee thread release - why?
I was reading AutoResetEvent documentation on MSDN and following warning kinda bothers me..
"Important:
There is no guarantee that every call to the Set method will release a thread. If two calls ...
0
votes
1answer
425 views
Check value of AutoResetEvent without affecting event
I'm creating some "instrumentation" inside a multi-threaded server in .NET (C#).
It's fairly easy to check the value of a .NET ManualResetEvent without concern for changing the value:
...
0
votes
1answer
578 views
AutoResetEvent fire before signal
I've two similar methods to below ones. In the MainThreadDoWork method the loop is finish executing regardless of the autoResetEvent.Set() in the OtherThreadWork method. Any idea what's happening in ...
0
votes
1answer
643 views
AutoResetEvent Set called after timeout
From MSDN "If there are no waiting threads, the wait handle remains signaled until a thread attempts to wait on it, or until its Reset method is called."
EventWaitHandle MyWaitHandle = new ...
2
votes
1answer
888 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
433 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.
...
3
votes
1answer
215 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 ...
4
votes
3answers
734 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 ...
1
vote
1answer
480 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 ...
2
votes
3answers
660 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
210 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 ...
0
votes
1answer
270 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 ...
2
votes
3answers
388 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 ...
1
vote
0answers
99 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 ...
1
vote
2answers
405 views
AutoResetEvent process?
private ConcurrentQueue<Data> _queue = new ConcurrentQueue<Data>();
private AutoResetEvent _queueNotifier = new AutoResetEvent(false);
public void MoreData(Data example)
{
...
2
votes
2answers
657 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:
...
2
votes
2answers
445 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
0answers
211 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
283 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
174 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 ...
1
vote
1answer
851 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 ...
3
votes
5answers
894 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
341 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
249 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()
{
...



