三种异步编程模型(APM)获取异步返回结果的方法

  • wait-until-done: invoke EndXxxx( IAsyncResult ) method
  • polling technique: periodically checking the state: IsComplete
  • callback mechanisim: have the best performance and scalability

    .Net has a single and simple architecture for asynchrounous programming model.

你可能感兴趣的:(编程)