The manualresetevent tag has no wiki summary.
0
votes
0answers
47 views
Asynchronous connection to server fails
I want to connect an asynchronous server. I have implemented a class called "client" whose instance can connect to server using method called "connect". I want this application to connect and then ...
1
vote
1answer
60 views
Blocking in a background thread in Windows Phone 8
I am working with Windows Phone's Coding4Fun toolkit's MessagePrompt object. I want to display the MessagePrompt and then block or wait until the MessagePrompt's Completed event fires. I obviously ...
0
votes
0answers
63 views
Synchronous Call in Windows Phone 7
I know that I cannot make a true synchronous call in Windows Phone 7. However, I'm trying to at least block the threads from processing until the async call is made or there is a timeout. I've tried ...
0
votes
1answer
54 views
Why is this synchronization not working?
I have this code:
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define ITERATIONS 10
typedef struct NUMERE
{
...
0
votes
1answer
108 views
How to implement Pause & Resume functionality with BackgroundWorker c#
i want to implement pause resume and cancel functionality with BackgroundWorker. i have a one user control and all backgroundworker related code written in user control. i just add user control on ...
0
votes
1answer
35 views
Regarding the use of ManualResetEvent usage c#?
i am not familiar with the usage of ManualResetEvent ?
is it thread related. what it does and when it is used?
here i got a code where ManualResetEvent is used but i just do not understand what it ...
1
vote
2answers
271 views
ManualResetEvent.WaitOne() doesn't return if Reset() is called immediately after Set()
I have a problem in a production service which contains a "watchdog" timer used to check whether the main processing job has become frozen (this is related to a COM interop problem which unfortunately ...
-3
votes
1answer
24 views
Thread with parameters and result
I need an example of code about thread, which must be created with parameters (i have 2) and returns result.
Also i want this thread works with ManualResetEvent, so i set it at the end of thread ...
0
votes
0answers
59 views
BackgroundWorker and ManualResetEvent
The task.
I have one method which runs two long-time functions inside.
Im not talking about locking objects here. These funcs are independent, only have same parameter which used in readonly.
I ...
0
votes
1answer
128 views
Using CountdownEvent and ManualResetEvent to control threads in ThreadPool
I've got the following multithreaded code excerpt that I've been working on to compare files following a zipped copy and unzip.
The application is zipping a folder containing a variable number of ...
0
votes
0answers
46 views
Proper Location to Call Dispose/Close for ManualResetEvent in C# Form Application
I am trying to do the right thing and call Dispose on my ManualResetEvent(s), but they need to be around (since multithreaded application with button clicks that rely on the events) until the form is ...
2
votes
1answer
49 views
Effect of creating large amounts of system threads and waiting on MRE?
I'm trying to fix memory spikes in a very large application. While I'm not sure how much of an effect this would have on memory, I noticed the following:
Application uses a custom thread pool to do ...
0
votes
0answers
51 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 ...
0
votes
1answer
102 views
Problems running method with manual reset event
I am building a method that uses the ManualResetEvent but i can't get it to run after i initiate the WaitOne method. Here is my code of the method. The code runs the code until it runs to the ...
0
votes
0answers
216 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 ...
2
votes
2answers
88 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 ...
0
votes
1answer
105 views
ManualResetEvent - how might a race condition occur here?
I am trying to determine whether I can use a ManualResetEvent here to ensure that in a concurrent environment, the inner actions of myMethod() are never invoked concurrently.
static volatile ...
0
votes
2answers
154 views
Synchronizing Thread and Event
In my console application, Synchronizing the events within in thread makes difficult.
using System;
using System.Threading;
using System.Windows.Forms;
namespace ConsoleApplication1
{
public ...
2
votes
0answers
66 views
Drawbacks with embedding event handlers in methods
Sometimes when I use assemblies that have an asynchronous approach for interaction (you call a method and then you get an event back with the answer) I like to convert them to synchrounus methods by ...
1
vote
2answers
165 views
Static variables generating problems with C# (Windows 8)
I am not a used C# programmer, so if this is stupid, sorry :-)
I am developing a C# app for Windows 8. I need to do a web request, and therefore, I have a callback to handle the request data.
I am ...
1
vote
1answer
197 views
How to properly stop single threaded windows service (onStop)?
I have got a windows service written in VS 2010 / .NET 4.0.
The service is following the scheme of the code snippet below: Using a timer, it executes some desired behaviour every couple of minutes. ...
0
votes
2answers
146 views
Is this code [theoretically] thread-unsafe?
I'm experiencing a strange deadlock in the code that I've written.
The idea is to implement an asynchronous operation whose Stop is synchronous -- the caller has to wait until it completes. I've ...
0
votes
1answer
202 views
Main thread not proceeding when child threads have finished
I am trying to use multithreading in my application. The method test5 tries to fetch some content from Internet, while the main thread waits for all threads to finish before continuing with other ...
3
votes
1answer
439 views
Conditional event waiting / ManualResetEvent
I know how to use the ManualResetEvent or synchronization primitives (like Monitor) to wait for events and/or locks, but I am wondering if there is a way to implement something like the following:
...
2
votes
1answer
513 views
Issue with ManualResetEvent not releasing all waiting threads consistently
I'm trying to implement a class which uses a simple cache for holding data retrieved from an internal service. I'm using a ManualResetEvent to block multiple threads which may try to refresh the ...
0
votes
0answers
167 views
Passing a ManualResetEvent object between classes
My program contains multiple threads, which I want to use a single ManualResetEvent object to control. When I create a new object (eg. new ManualResetEvent MRE = new ManualResetEvent(args);), I want ...
1
vote
1answer
380 views
ManualResetEvent with HttpWebRequest on WP7
To start off with, this might be tagged as a duplicate of the following thread:
Wait for HttpWebRequest.BeginGetResponse to finish in Windows Phone 7, however, the responses in that thread did not ...
3
votes
2answers
485 views
Asynchronous Client Socket ManualResetEvent holding up execution
I am attempting to utilize MSDN's Asynchronous Client Socket code sample to connect and control some home equipment. As I understand, the sample code's ReceiveCallback method uses an instance of the ...
1
vote
1answer
396 views
How do I wake up a thread at a specified time in objective-c
I'm writing an ssh wrapper in objective-c, I'm trying to implement a maxTime a command should take to execute. The way I implement it is:
Main Thread:
calculate timeout
create asyncThread (GCD ...
0
votes
2answers
507 views
Console app exits before callback is executed
I have a console app that executes a class method (in a different project).
This method performs a POST to a webservice asynchronously (this is a lengthy operations of 3 minutes) and has a callback ...
0
votes
1answer
123 views
ManualResetEvent issue on WinXP embedded
I am having a problem with using the ManualResetEvent class with a timeout parameter. This problem occurs specifically on the WinXP embedded platform. The code works perfectly on other windows ...
1
vote
1answer
376 views
Lazy initialization of a singleton with parameters
I am trying to create a singleton which has a non-empty constructor and to access it into a synchronized way: since I have no control on the order of initialization of my component, if a component ...
0
votes
1answer
175 views
Reading twice from FileStream
I have a GetServiceMap() method which calls deserializer who then opens the stream and reads something from it.
The problem is that i have a GetAllGroups() method also who calls deserializer over the ...
1
vote
1answer
286 views
What could cause EventWaitHandle.Set() to block the current thread?
I am invoking the Set method on an instance of a ManualResetEvent, and it is occasionally deadlocking. I can't find anything in the documentation to indicate that this is a blocking method. What ...
1
vote
2answers
236 views
Is ManualResetEvent size checking sufficient for waiting for multiple thread?
I am currently using the ManualResetEvent for a single thread to wait for multiple thread to add something to the queue of a thread manager. If the thread manager receives a signal using manual reset ...
1
vote
4answers
1k views
ManualResetEvent.WaitOne blocks all threads
i have following code
ThreadPool.QueueUserWorkItem(new WaitCallback(DownloadAsync), apiMethod);
downloadHandle.WaitOne();
Where DownloadAsync is
private void DownloadAsync(object _uri)
{
...
3
votes
2answers
280 views
Will the ManualResetEvent consume cpu while it is in a wait state?
More specifically, does the performance degradation of context switching apply to threads that are in a wait state?
Under what conditions or circumstances would a ManualResetEvent, or WaitHandle, be ...
-1
votes
2answers
289 views
Is this Background Thread Queue a performant implementation?
Specifically, I'm wondering:
Will the ManualResetEvent consume resources while it is in a wait state? Does the performance degradation of context switching apply to threads that are in a wait state?
...
1
vote
3answers
384 views
Is it safe to catch ObjectDisposedException on ManualResetEvent.WaitOne()?
This is closely related to Is it safe to signal and immediately close a ManualResetEvent? and might provide one solution to that problem.
Say I have a bunch of threads that potentially want to do the ...
0
votes
1answer
946 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
1k 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
174 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 ...
1
vote
2answers
1k 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;
...
0
votes
0answers
72 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
765 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
182 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 ...
2
votes
4answers
603 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 ...
3
votes
2answers
447 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
1k 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 ...
1
vote
0answers
839 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 = ...


