Class ContinuallyEnumerable<T>.ContinuallyEnumerator
TBD
Inherited Members
Namespace: Akka.Streams.Util
Assembly: Akka.Streams.dll
Syntax
public sealed class ContinuallyEnumerable<T>.ContinuallyEnumerator : IEnumerator<T>, IEnumerator, IDisposable
Constructors
| Edit this page View SourceContinuallyEnumerator(Func<IEnumerator<T>>)
Initializes a new instance of the ContinuallyEnumerable<T>.ContinuallyEnumerator class.
Declaration
public ContinuallyEnumerator(Func<IEnumerator<T>> enumeratorFactory)
Parameters
| Type | Name | Description |
|---|---|---|
| Func<IEnumerator<T>> | enumeratorFactory | The method used to create an IEnumerator<T> to iterate over an enumerable. |
Properties
| Edit this page View SourceCurrent
Declaration
public T Current { get; }
Property Value
| Type | Description |
|---|---|
| T |
Methods
| Edit this page View SourceDispose()
Declaration
public void Dispose()
MoveNext()
Declaration
public bool MoveNext()
Returns
| Type | Description |
|---|---|
| bool |
Exceptions
| Type | Condition |
|---|---|
| ArgumentException | This exception is thrown when the enumerator has passed the end of an enumerable. |
Reset()
Declaration
public void Reset()
Edit this page