Tagged Questions
The manualresetevent tag has no wiki summary.
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
6answers
626 views
How to keep a .NET console app running?
Consider a Console application that starts up some services in a separate thread. All it needs to do is wait for the user to press Ctrl+C to shut it down.
Which of the following is the better way ...
5
votes
2answers
5k views
ManualResetEvent vs. Thread.Sleep
I implemented the following background processing thread, where Jobs is a Queue<T>:
static void WorkThread()
{
while (working)
{
var job;
lock (Jobs)
{
...
4
votes
5answers
682 views
Is it safe to signal and immediately close a ManualResetEvent?
I feel like I should know the answer to this, but I'm going to ask anyway just in case I'm making a potentially catastrophic mistake.
The following code executes as expected with no ...
4
votes
4answers
3k views
ManualResetEvent WaitOne not unblocking
I'm a little confused over a ManualResetEvent that I'm using which doesn't appear to be unblocking. Anyone know why this might be the case?
The scenario I've got is something along these lines. The ...
3
votes
3answers
731 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
2answers
1k views
WinForms RichTextBox : how to reformat asynchronously, without firing TextChanged event
This is a followup to
WinForms RichTextBox: how to perform a formatting on TextChanged?
I have a Winforms app with a RichTextBox, the app auto-highlights the content of said box. Because the ...
1
vote
2answers
133 views
Why isn't the BeginGetResponse callback being called?
Here's my code:
namespace RequestApi
{
public partial class MainPage : PhoneApplicationPage
{
private BackgroundWorker bw;
private string ans;
private JObject ansJson;
...
1
vote
4answers
221 views
Should I use ManualResetEvent as a lock object?
The method below should return true for the first call, and false for any other call.
Is there any problem with it? Is it safe to use the reset event for locking?
private ManualResetEvent ...
1
vote
0answers
457 views
System.Threading.Timer's Dispose method does not work with ManualResetEventSlim?
I have the following code for a sample console app to simulate a Windows Service.
class Program
{
private Timer timer;
private object syncRoot = new object();
private bool stopSignalled = ...
1
vote
7answers
1k views
To make a choice between ManualResetEvent or Thread.Sleep()
I am not sure which strategy to adopt...I am focusing on my operation getting completed, but I'd also like to keep performance issues to a min too...there is a method called Execute() which has to ...
0
votes
1answer
42 views
WCF Async - How to use ManualResetEvent
Can any one tell me how to use 'ManualResetEvent' in a async wcf service? I have a console application which makes calls to async wcf service and I wanted to close the console app after 'oncomplete' ...
0
votes
2answers
163 views
ManualResetEvent - WaitOne() does not seem to release thread at some point
I have a multi-threading form application and this is how the part in question is designed:
Thread 2 (BatchPreviewAssistant class) is waiting for the primary interface thread to pass images load ...
0
votes
1answer
54 views
Webservice : AsyncCall finished : But WaitOne() still waiting
I am calling a WebService method via a Command Line Exe.
This method call is Async Call and I am using WaitOne after the Call.
I am doing ManualRest.Set() in completed method.
The above setup ...
0
votes
0answers
37 views
Difference when executing IPy Script embedded or “stand-alone”?
as already written in my other post, I'm currently writing an IDE/Debugger for IronPython.
But now I came across another problem.
I have libraries written in C#, which I call from my IronPython ...
0
votes
3answers
212 views
How can I wait the response and do operations with it?
I have one new problem. I want to do some operations with the response, but I get a NullReferenceException, because it isn't arrived yet... Here is my code:
public partial class MainPage : ...
0
votes
1answer
62 views
Resetting Application on Certain Event
I'm writing an iPhone app, and upon a certain event, say, the user winning the game, I would like to reset the application back to its initial state right after it is launched. For example, executing ...
0
votes
1answer
126 views
Deadlock when locking manualResetEvent
I encounter a deadlock caused when locking instance of manualResetEvent. I can't figure out how to solve it. I will appreciate any help.
I have 2 methods in a class performed by different threads:
...
0
votes
2answers
561 views
ManualResetEventSlim and Lock
I have a piece of data that takes quite a lot of time to fetch. I have different ways of figuring out if new data should be fetched or if I can use my current "cache" theResult
When someone asks for ...
0
votes
1answer
210 views
In .NET when Aborting Thread, can this piece of code get corrupted?
Little intro:
In complex multithreaded aplication (enterprise service bus ESB), I need to use Thread.Abort, because this ESB accepts user written modules which communicates with hardware security ...
0
votes
2answers
91 views
Server multithreading overkill?
I'm creating a server-type application at the moment which will do the usual listening for connections from external clients and, when they connect, handle requests, etc.
At the moment, my ...
0
votes
2answers
923 views
C#: Crash on ManualResetEvent
I wrote my code using this article at msdn as a primary helper
My code:
private ManualResetEvent _AllDone = new ManualResetEvent(false);
internal void Initialize(int port,string IP)
{
...
0
votes
1answer
720 views
Changing async call implementation using a ManualResetEvent to one using a combination of Thread methods
I'm looking for a design pattern to switch from using a ManualResetEvent to using Thread methods like Thread.Join. Right now I'm making an async call and then using a ManualResetEvent to wait till the ...