Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Throughput/Design Problem

Status
Not open for further replies.

tobriain

Programmer
Jul 19, 2006
13
IE
Hello,

I hope one of you have found a solution to the following problem before. . . Thanks in advance if you have.

I have to implement an interface defined in an external program - I must have a method Notify() in my object

toimplement that interface. When there's an update, the Notify() method is called by the external program. I can

then collect any updates with a method call that returns a System.Array consisting of an ID (given by me when

implementing the connection), and a value.

The problem is that the array that I collect updates from is of fixed size (subsequent updates are not added to

the end of the array like a queue. . ), so sometimes by the time I've collected the update, set a member variable

in another object to the value (m_Object.SomeValue) and returned to respond to any subsequent Notify() calls, the

updates have been overwritten and I've missed some updates. . . Not great. I've removed any calculations I was

doing in these Set() methods, but it still doesn't return in time. .

This is a sample of my set-up:

ManualResetEvent m_NotifyEvent;
Thread m_UpdateThread;
. . . .
m_NotifyEVent = new ManualResetEvent(false);
m_UpdateTHread = new THread(new ThreadStart(RTDUpdates));
m_UpdateThread.Start();
... . .. .

private void RTDUpdates()
{
m_NotifyEVent.WaitONe();

System.Array arrValues = m_RTDServer.RefreshData();
if(arrValues > 0)
{
for (int i =0; i<arrValues.GetLength(1); i++)
{
int[] index1 = {0,i};
int TopicID = Convert.ToInt32(arrValues.GetValue(index1));
int[] index2 = { 1, i };
int TopicValue = Convert.ToInt32(arrValues.GetValue(index2));
switch (TopicID)
{
case 0:
m_Object.SomeValue = TopicValue;
break;
case 1:
m_Object.ANotherValue = TopicValue;
break;
}
}
m_NotifyEvent.Reset();
}
. . . .

public void UpdateNotify()
{

m_NotifyEvent.Set();
}

How can I concentrate on maintaining the proper state of the variables i'm setting by collecting the updates and

immediately putting them into some kind of FIFO list.

Best regards,

Tom.
 
You are dealing with asynchronous calls here. To expect a FIFO setup from the external component is unreasonable.

Instead, throw your requests into some kind of dictionary. Then you can match the response to the request by ID when the Notify method is invoked.

If you absolutely have to have FIFO - then date/time stamp your requests and cross reference the item to see if you are still waiting for another request first. This essentially ends up being a queue on your side.

I hope that gives you some ideas...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top