Ordering the calling of asynchronous methods in c#
- by Peter Kelly
Hi,
Say I have 4 classes
ControllerClass
MethodClass1
MethodClass2
MethodClass3
and each MethodClass has an asynchronous method DoStuff() and each has a CompletedEvent.
The ControllerClass is responsible for invoking the 3 asynchronous methods on the 3 MethodClasses in a particular order.
So ControllerClass invokes MethodClass1.DoStuff()…