Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IAsyncEnumerable.cs
1using System.Collections;
2
3namespace Waher.Persistence
4{
8 public interface IAsyncEnumerable : IEnumerable
9 {
18 }
19
23 public interface IAsyncEnumerable<T> : System.Collections.Generic.IEnumerable<T>, IAsyncEnumerable
24 {
25 }
26}
Interface for objects with asynchronous enumerators.
IAsyncEnumerator GetAsyncEnumerator()
Returns an enumerator that iterates through a collection.
Interface for asynchronous enumerators.