I have a component im using in my application. When I call a method
myComponent.slowMethod() my entire application hangs until slowMethod()
completes. I have tried using the .net threading model to trigger the
slowMethod inside a thread wrapper class but I still have the same behavior.
Is there anything I might be missing here?
Daniel Petersson, Cefalo - 22 Mar 2005 15:42 GMT
Check out async delegates in the documentation. Async delegates
is the easiest way to create async behaviour in managed apps.
// Daniel
> I have a component im using in my application. When I call a method
> myComponent.slowMethod() my entire application hangs until slowMethod()
> completes. I have tried using the .net threading model to trigger the
> slowMethod inside a thread wrapper class but I still have the same behavior.
> Is there anything I might be missing here?