Asynchronous Calls with Return Values : Asynchronous « Thread « C# / CSharp Tutorial






using System;
using System.Threading;

class MainClass{
    public delegate double MathFunctionToCall(double arg);
    
    public static void MathCallback(IAsyncResult iar)
    {
        MathFunctionToCall mc = (MathFunctionToCall) iar.AsyncState;
        double result = mc.EndInvoke(iar);
        Console.WriteLine("Function value = {0}", result);
    }
    public static void CallMathCallback(MathFunctionToCall mathFunc,double start,double end,double increment)
    {
        AsyncCallback cb = new AsyncCallback(MathCallback);
        
        Console.WriteLine("BeginInvoke: {0}", start);
        mathFunc.BeginInvoke(start, cb, mathFunc);
        start += increment;
    }

    public static void Main()
    {
        CallMathCallback(new MathFunctionToCall(Math.Sin), 0.0, 1.0, 0.2);
        Thread.Sleep(2000);
    }
}
BeginInvoke: 0
Function value = 0








20.23.Asynchronous
20.23.1.Asynchronous Calls: IAsyncResult
20.23.2.Async Method
20.23.3.Asynchronous Calls with Return Values
20.23.4.Use async job to compute
20.23.5.Pass delegate to deal with the IAsyncResult
20.23.6.Call asynchronously
20.23.7.Use AsyncCallback
20.23.8.Async Delegate
20.23.9.Asynchronous Invocation Of Delegates
20.23.10.Async Callback Delegate
20.23.11.Asynchronous Results Pattern Example
20.23.12.AsyncCallback and file viewer
20.23.13.Asynchronous Writing, Asynchronous Reading