J'ai entendu dire qu'il existe quatre modèles d'exécution asynchrone.
"Il existe quatre modèles dans l’exécution déléguée async: interrogation, attente d’achèvement, notification d’achèvement et" déclencher et oublier ".
Quand j'ai le code suivant:
class AsynchronousDemo
{
public static int numberofFeets = 0;
public delegate long StatisticalData();
static void Main()
{
StatisticalData data = ClimbSmallHill;
IAsyncResult ar = data.BeginInvoke(null, null);
while (!ar.IsCompleted)
{
Console.WriteLine("...Climbing yet to be completed.....");
Thread.Sleep(200);
}
Console.WriteLine("..Climbing is completed...");
Console.WriteLine("... Time Taken for climbing ....{0}",
data.EndInvoke(ar).ToString()+"..Seconds");
Console.ReadKey(true);
}
static long ClimbSmallHill()
{
var sw = Stopwatch.StartNew();
while (numberofFeets <= 10000)
{
numberofFeets = numberofFeets + 100;
Thread.Sleep(10);
}
sw.Stop();
return sw.ElapsedMilliseconds;
}
}
1) Quel est le motif implémenté par le code ci-dessus?
2) Pouvez-vous expliquer le code, comment puis-je mettre en œuvre le reste ..?