0
votes
0answers
35 views

FileSystemWatcher - Reduce Multiple Event Raising (or Reduce Results of Multiple Events) in Visual Basic (VS 2012 V11)

I'm trying to reduce the number of events raised to one when the FileSystemWatcher changes (or at least display text in a textbox only once when an event is raised, by either removing the duplicate ...
1
vote
1answer
39 views

Threading and events

I'm really stuck here, I've read a lot on threading on android but I'm unable to find an answer that suits my proyect. I've got a frontend (Manages GUI) and a backend (Manages the data and stuff). I ...
0
votes
0answers
11 views

Lightweight crossplatform library/libraries for threading, mutual exclusion, events & delegation?

I've found Boost and QT to provide cross-platform solutions to threading, events and mutual exclusion, but both these libraries are bloated and programmers don't like using them. Besides, QT has a ...
0
votes
3answers
43 views

Threads, Events and databases

Ok so I am not very familiar with databases so there may be a simple solution that I am not aware of. I have a SQL database that is to be managed by a class in my c# application. What I want the ...
0
votes
1answer
60 views

Widgets must be created in the GUI thread Error !. How to correct the code?

I have some experience with C++ but I'm a Qt beginner just for a few days. Look at my simple application code below, that is "main.cpp" which is only code file in the project. The problem is that when ...
4
votes
1answer
62 views

CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()

I have created 3 threads each thread has one socket each. Inside each thread, socket is made "Event Driven" and whenever data becomes available for reading, an event is generated. The code works ...
0
votes
0answers
64 views

Multithreading and using events

My program has three threads, and I am trying to learn about synchronization and thread safety. Below I outline what the different threads do, but I would like to learn how to use events instead to ...
3
votes
2answers
98 views

Why is starting a thread blocked by another thread?

I encountered a strange problem while writing a prototype for an architecture. I tried to create two threads that dispatch the same commands independently. The first thread was to use a Scanner and ...
3
votes
3answers
126 views

c# events execution are thread safe?

I read a lot of event and threads discussion, but all of then focus in "what happen" if I unsuscribe from an event and try to call it later. My question is different...what will happen if I have a ...
0
votes
0answers
25 views

Event raising and Read introduction in .net 4.5

I have the question related to this MSDN Magazine article. Read Introduction As I just explained, the compiler sometimes fuses multiple reads into one. The compiler can also split a single read ...
0
votes
1answer
53 views

Updating ObservableCollection on dispatcher thread causes UI to freeze

When updating my ObservableCollection, I was getting this error: This type of CollectionView does not support changes to its SourceCollection from a thread different from the Dispatcher thread. ...
0
votes
1answer
70 views

How to create an event in Java

I am currently working on a multi-threaded socket based Java program that should allow multiple threads to send request to this program. This should be handled with the event activation but I am ...
0
votes
3answers
34 views

sending data from multiple threads to main form in C#NET

I have multiple IP devices connected to my computer. Each device is connected using separate thread. Each thread is assigned a function using class instance and communicate using socket programming. ...
7
votes
3answers
192 views

Event notification without mutex

C++11 has std::condition_variable, it's wait funciton is: template< class Predicate > void wait( std::unique_lock<std::mutex>& lock, Predicate pred ); it requires some mutex. As ...
0
votes
1answer
35 views

Event's action performed on new thread

I have an observable collection var QueryList = new ObservableCollection<QueryData>(); Suppose I have implemented a method OnQueryListCollectionChanged for when this collection's ...
0
votes
2answers
75 views

Increment sleep/wait time until required

I'm not very good in multi-threading, this might be a basic question. But i have'nt been able to find an answer. Scenario: Lets say I have an event listener which is fired by something. Every time ...
0
votes
0answers
27 views

Delay varies for different events

I have a custom control with events, and i have a set of code to be executed. I tried the code in various events such as my controls loaded event, in a dependency changed event and also in a Routed ...
1
vote
2answers
45 views

What is the difference between a thread-based server and an event-based server?

I am looking for an analogy that will help me understand the difference between how a thread-based sever handles http requests and how an event-based server handles http requests. Let's say that a ...
0
votes
1answer
104 views

overhead of thread-synchronization via Events

I am experimenting with multithreaded synchronization at the moment. For a backround I have a set of about 100000 objects - possibly more - I want to process in different ways multiple times per ...
0
votes
0answers
49 views

how to handle an event fired from a thread in .NET

I'm trying to handle events fired from a third party dll (SDK). Basically, I am able to catch (handle) these events if the object is instantiated from the main thread (i.e. from the main application ...
0
votes
1answer
53 views

Wait for a number of events before continuing (threadsafe)

I have an integration test, where I trigger things by sending off an event. Then a couple of asynchronous things happen, and I expect a specific number of events to be raised by this. My test code ...
0
votes
0answers
92 views

Kinect events just stop firing after a few minutes

I had this issue with voice recognition with kinect on an earlier project (now on hold) but I was working on an image processing project and right at the start I'm having an issue with kinect events ...
2
votes
3answers
69 views

Event not raising properly in forms

I have a MainWindow with eventhandler which is not working properly. I have made simple model of this problem. Please see comment in code where the problem is: public partial class MainWindow : ...
1
vote
2answers
80 views

Cross-thread InvalidOperationException when logging to MyLogger from a background worker

I have created a event driven logger that seems to have issues when called from another thread. How can I make it thread safe? Here is the LoggerClass: public static class MyLogger { private ...
0
votes
5answers
112 views

Coordinate threads without wait/notify if possible

Besides wait/notify is there a cleaner way of notification of events among threads? E.g. if I want Thread X to notify ThreadY that something occured is there a better construct in concurrent package ...
3
votes
1answer
110 views

Thread-safe raising of F# events

I'm trying to do an F# async computation that calls an C# callback when ready. The code is the following: type Worker() = let locker = obj() let computedValue = ref None let started = ...
0
votes
2answers
78 views

Starting and pausing threads?

I need to use threading to pause/resume projectile motion. On the button3_Click event the projectile motion is drawn on-screen: public void button3_Click(object sender, EventArgs e) { //... Lots of ...
3
votes
5answers
62 views

Why does the lock insure that the underlying monitor is released and direct usage of monitor does not?

The msdn article Thread Synchronization (C# Programming Guide) specifies that: lock (x) { DoSomething(); } is equivalent to: System.Object obj = (System.Object)x; ...
0
votes
1answer
133 views

c# event handling: best practice to avoid thread contention and threadpool draining

When events trigger, they use threads from the threadpool. So if you have a bunch of events that trigger faster than they return, you drain your threadpool. So whenever you have an event handler ...
1
vote
2answers
79 views

how to write a future that wait for an event

I have a client/server socket that does some rpc things. I know a bit about finagle and I find the isolation with a Future very elegant. So my question would be how to write a Future in scala that ...
-1
votes
1answer
137 views

main thread sleep will waiting for an event in C#

i have a serial port object with dataRevised event, i need to have my main thread sleep will waiting for the event to fire dataRevised event, i used semaphore but when the main thread on waiting the ...
1
vote
2answers
85 views

Another way to check std::queue event?

Well, I'm trying to work on some kind of queue. I have an IO thread that it's dedicated for popping data out of the std::queue but the problem is that I'm using a Sleep() in order to prevent 100% cpu ...
1
vote
2answers
171 views

Trigger an event when clipboard content changes

I'm trying to get the clipboard content using a Python script on my Mac Lion. I'm searching for an event or something similar, because if I use a loop, my application spends all its time watching the ...
0
votes
1answer
122 views

How to change a GUI control state by the event handler

Request description I'm handling a project which need to call a background process to read some data from database. The get data button of the GUI will turn to gray during this time and turn to ...
1
vote
0answers
46 views

How to work with events in case of engine living inside thread?

So I have thread A that is events initiator (network/gui). I have an Engine in thread B which runs in some run() function and updates on update() call. I wonder how to implement events on top of such ...
0
votes
2answers
149 views

DispatcherObject cast woes and Async / ObservableCollection issues in WPF

The code below pulls out a bunch of records from an Access 2010 database; hence rolling my own connector bits. I've succeeded in doing the observablecollection and made it all bind up with nice drag ...
2
votes
1answer
91 views

How do I work with threads and awt-events?

I have a runnable gui swing class that sets my variables when the constructor is initialized. When the gui runs, it runs as its own seperate thread. The problem however is when an action-event is ...
0
votes
4answers
209 views

Multithreading, race conditions, and C# events - why not just try/catch? [closed]

I was looking at these questions from 2009: C# Events and Thread Safety I also looked at Eric Lippert's blog post on the same topic: ...
1
vote
1answer
86 views

Event driven message routing and hiding implementation

I need to sent messages around my program to different class libraries. So the way I thought it does this was to have a message router class that all the different libraries subscribe to and all ...
1
vote
2answers
114 views

Thread update main screen via event

I am trying to get a thread to update a GUI and i was advised to use an event. Specifically the application gives me a cross threading error in the method UpdateResult() below. I assume the event i ...
0
votes
1answer
39 views

Can't update GridPane

I have a simple app with a grid (GridPane) and a simple toolbar with Start/Stop buttons. My buttons action looks like this: startButton.setOnAction(new EventHandler<ActionEvent>() { ...
1
vote
1answer
48 views

Identify if on a `touch` callback thread, ios

I'm writing some iOS code, and I noticed I get occasional errors when I write the memory used by a vertex array in a 'touchevent' callback (memory access violation). I believe touch events come in on ...
1
vote
3answers
550 views

Execute a method in main thread from event handler

I have a custom Queue class inherited from Queue class. It has an event ItemAdded. In the event handler of this event i am executing a method. But it is running other than main thread, though i want ...
0
votes
2answers
140 views

Is it correct to raise custom events from Timer/ BackgroundWorker Completed that go on and update UI

My winforms application needs to interact with hardware devices. The display is kind of workflow... after step 1 .. completed.. go to step 2 .. etc. The display is dynamic with controls being made ...
0
votes
2answers
245 views

Add a decimal millisecond delay to Java code

I want to add a delay of 0.488 ms to my java code. but thread.sleep() and Timer functions only allow a granularity of millisecond. How do I specify a delay amount below that level ?
1
vote
1answer
128 views

Python Thread communication not working

I have two threads, Reader and Writer. The Writer gets data from the network and sends it then over a socket to some executable. When this is done the writer should block up to 70 seconds which I ...
-1
votes
1answer
260 views

Event handling in Java/Android

I am building an android app, I have a main view which responds to on touch events which cause the GUI to redrawn itself. I also have to redraw the GUI when certain network events occur. I have a ...
1
vote
1answer
128 views

QObject::connect: Cannot queue arguments of type 'object' in PySide

I am using PySide (Python Qt binding). I have a worker thread of class QThread that updates the main GUI thread (updates the QTableWidget) through signal/slot mechanism. In my worker thread, I have ...
0
votes
5answers
193 views

NullReferenceException when attempting to fire an event

I'm learning about creating events and creating multi-threaded applications. The method Thread is called by another class which populates the params with search conditions. A BackgroundWorker is ...
-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 ...

1 2 3 4 5 7