asynchronous callback problem

  • Thread starter Thread starter Alien
  • Start date Start date
A

Alien

hi Guys
Can I call an a asynchronous call from any asynchronous call? Like

a.BeginCallBack(){
do something...
}

a.EndCallBack()
{
do something...

b.beginCallBack()
}

b.endCallBack()
{
}
 
Yes. I would call the respective EndXX() method before calling the next
BeginXX().

--
William Stacey [MVP]

| hi Guys
| Can I call an a asynchronous call from any asynchronous call? Like
|
| a.BeginCallBack(){
| do something...
| }
|
| a.EndCallBack()
| {
| do something...
|
| b.beginCallBack()
| }
|
| b.endCallBack()
| {
| }
|
|
 
Alien said:
hi Guys
Can I call an a asynchronous call from any asynchronous call?

Yes.

Obvious really - for example: What use would an async TCP receive be if it
couldn't do another?
 
Back
Top