Dans le code ci-dessous, en raison de l'interface, la classe LazyBar
doit renvoyer une tâche à partir de sa méthode (et pour des arguments, le sake ne peut pas être changé). Si l' LazyBar
implémentation de S est inhabituelle en ce sens qu'elle s'exécute rapidement et de manière synchrone - quelle est la meilleure façon de renvoyer une tâche sans opération à partir de la méthode?
Je suis allé avec Task.Delay(0)
ci - dessous, mais je voudrais savoir si cela a des effets secondaires performances si la fonction est appelée beaucoup (pour l' amour des arguments, dire des centaines de fois par seconde):
- Ce sucre syntaxique se déroule-t-il en quelque chose de grand?
- Cela commence-t-il à obstruer le pool de threads de mon application?
- Le couperet du compilateur est-il suffisant pour traiter
Delay(0)
différemment? - Serait-
return Task.Run(() => { });
ce différent?
Y a-t-il une meilleure façon?
using System.Threading.Tasks;
namespace MyAsyncTest
{
internal interface IFooFace
{
Task WillBeLongRunningAsyncInTheMajorityOfImplementations();
}
/// <summary>
/// An implementation, that unlike most cases, will not have a long-running
/// operation in 'WillBeLongRunningAsyncInTheMajorityOfImplementations'
/// </summary>
internal class LazyBar : IFooFace
{
#region IFooFace Members
public Task WillBeLongRunningAsyncInTheMajorityOfImplementations()
{
// First, do something really quick
var x = 1;
// Can't return 'null' here! Does 'Task.Delay(0)' have any performance considerations?
// Is it a real no-op, or if I call this a lot, will it adversely affect the
// underlying thread-pool? Better way?
return Task.Delay(0);
// Any different?
// return Task.Run(() => { });
// If my task returned something, I would do:
// return Task.FromResult<int>(12345);
}
#endregion
}
internal class Program
{
private static void Main(string[] args)
{
Test();
}
private static async void Test()
{
IFooFace foo = FactoryCreate();
await foo.WillBeLongRunningAsyncInTheMajorityOfImplementations();
return;
}
private static IFooFace FactoryCreate()
{
return new LazyBar();
}
}
}
Task.FromResult<object>(null)
.