Class ContinuallyEnumerable<T>
TBD
Inherited Members
Namespace: Akka.Streams.Util
Assembly: Akka.Streams.dll
Syntax
public class ContinuallyEnumerable<T> : IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T | TBD |
Constructors
| Edit this page View SourceContinuallyEnumerable(Func<IEnumerator<T>>)
Initializes a new instance of the ContinuallyEnumerable<T> class.
Declaration
public ContinuallyEnumerable(Func<IEnumerator<T>> enumeratorFactory)
Parameters
| Type | Name | Description |
|---|---|---|
| Func<IEnumerator<T>> | enumeratorFactory | The method used to create an IEnumerator<T> to iterate over this enumerable. |
Methods
| Edit this page View SourceGetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<T> |
Edit this page