我有一个这样写的接口:
public interface IItemRetriever
{
public IAsyncEnumerable<string> GetItemsAsync();
}
我想编写一个不返回任何项目的空实现,如下所示:
public class EmptyItemRetriever : IItemRetriever
{
public IAsyncEnumerable<string> GetItemsAsync()
{
// What do I put here if nothing is to be done?
}
}
如果可以使用普通的IEnumerable,我可以return Enumerable.Empty<string>();
,但是没有找到任何东西AsyncEnumerable.Empty<string>()
。
解决方法
我发现这可行,但是很奇怪:
public async IAsyncEnumerable<string> GetItemsAsync()
{
await Task.CompletedTask;
yield break;
}
任何的想法?