Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IAsyncEnumerator.cs
1using System;
2using System.Collections;
3using System.Threading.Tasks;
4
5namespace Waher.Persistence
6{
10 public interface IAsyncEnumerator : IEnumerator
11 {
18 Task<bool> MoveNextAsync();
19 }
20
24 public interface IAsyncEnumerator<T> : System.Collections.Generic.IEnumerator<T>, IAsyncEnumerator
25 {
26 }
27}
Interface for asynchronous enumerators.
Task< bool > MoveNextAsync()
Advances the enumerator to the next element of the collection.