Tengo una interfaz que se escribe así:
public interface IItemRetriever
{
public IAsyncEnumerable<string> GetItemsAsync();
}
Quiero escribir una implementación vacía que no devuelva ningún elemento, así:
public class EmptyItemRetriever : IItemRetriever
{
public IAsyncEnumerable<string> GetItemsAsync()
{
// What do I put here if nothing is to be done?
}
}
Si fuera un IEnumerable simple, lo haría return Enumerable.Empty<string>();
, pero no encontré ninguno AsyncEnumerable.Empty<string>()
.
Soluciones alternativas
Encontré esto que funciona pero es bastante extraño:
public async IAsyncEnumerable<string> GetItemsAsync()
{
await Task.CompletedTask;
yield break;
}
¿Alguna idea?