Program VB.net
OnQuoteUpdate()
{
line1
line2
line3
line4
}
---- what I've noticed that happens is that the program will sometimes overlap calls.
Normally when you receive an update from the quote, it will go through all 4 lines of code before another update is called. But every once in a while I will get the calls to overlap, where...
I get a call in OnQuoteUpdate, and before it finishes executing line4 for that current call, it'll execute line1 from another call in OnQuoteUpdate()
Is there a way to prevent this?
I'm using VB.net 2005, sterling.
OnQuoteUpdate()
{
line1
line2
line3
line4
}
---- what I've noticed that happens is that the program will sometimes overlap calls.
Normally when you receive an update from the quote, it will go through all 4 lines of code before another update is called. But every once in a while I will get the calls to overlap, where...
I get a call in OnQuoteUpdate, and before it finishes executing line4 for that current call, it'll execute line1 from another call in OnQuoteUpdate()
Is there a way to prevent this?
I'm using VB.net 2005, sterling.