S
scott ocamb
hello
I have implemented a solution using async methods. There is one async
method that can be invoked multiple times, ie there are multiple async
"threads" running at a time.
When these threads are complete, the call the Callback method. Each "thread"
calls the same callback method.
What thread does this callback method exist on? My testing indicates the
callback method is not blocked when executed from a given thread when it
completes.
For example thread 1 can execure it's callback , while thread 2 executes
it's callback. No blocking seems to occur.
Any help getting me to understand this would be appreciated.
I have implemented a solution using async methods. There is one async
method that can be invoked multiple times, ie there are multiple async
"threads" running at a time.
When these threads are complete, the call the Callback method. Each "thread"
calls the same callback method.
What thread does this callback method exist on? My testing indicates the
callback method is not blocked when executed from a given thread when it
completes.
For example thread 1 can execure it's callback , while thread 2 executes
it's callback. No blocking seems to occur.
Any help getting me to understand this would be appreciated.