Hi, I am invoking the delegates asynchronously(using Begin Invoke). These delegates are not invoked in the invocation order . How to make this delegate to raise in the invocation order. Thanks in Advance Sangeetha
RSangeetha
Posts
-
Rasing Asynchronous delegates in the invocation order -
RS232 IN C++/CLI .NET2 vs2005serialPort->Read(buffer, offset, count) This function returns the number of bytes read.Since u have given the count value as 5,it would always return 5.Get the expected data from the buffer array
-
Invoking delegates(Asynchronouly) in the invocation orderHi, Delegates raised asynchrnosly does not raise in the invocation order.It executes randomly.How to make this delegate to be raised in the order it is invoked Thanks in advance Sangeetha
-
Priority to system timersI have a application communicating to the hardware device via serial port.I have to do a task(some work) at the specified interval of time continously. So i opted to use System.Timers. whenever the time elapses,i will perofrm the task.Apart from this i have someother task running parallely in my application. The timer doesn't elapse at the speciifed time when some other task is going on continously.This is due to the time slice that OS schedules for the thread to execute . But how can i make my task to execute when the timer elpases.Can i set some priority to the timer.Is there any alternate way to do this. Thanks in Advance, Sangeetha