F
Fabrice HOEPPE
Hi,
I want to fire C# events from a thread to a windows form.
One way to do it, it's to call BeginInvoke, Invoke,
EndInvoke methods of the windows form control from the
thread. However, this mechanism uses the serialization of
data from the thread to the form. We can read into the
msdn that this mechanism requires a lot of resources
system. I need to improve this mechanism for a real time
application which uses a low resource system and which
must be run fastest. I have worked with an another team
which have been developped this kind of application but in
Java. I was very surprised of its performance. In my case,
it is the only one point that I must improve if I want to
be much competitive than Java. Do you have any ideas to
improve the communication between a thread to a no thread-
safe windows form or an another way to communicate from a
thread to a form into a thread safe context?
Fabrice
I want to fire C# events from a thread to a windows form.
One way to do it, it's to call BeginInvoke, Invoke,
EndInvoke methods of the windows form control from the
thread. However, this mechanism uses the serialization of
data from the thread to the form. We can read into the
msdn that this mechanism requires a lot of resources
system. I need to improve this mechanism for a real time
application which uses a low resource system and which
must be run fastest. I have worked with an another team
which have been developped this kind of application but in
Java. I was very surprised of its performance. In my case,
it is the only one point that I must improve if I want to
be much competitive than Java. Do you have any ideas to
improve the communication between a thread to a no thread-
safe windows form or an another way to communicate from a
thread to a form into a thread safe context?
Fabrice