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
| Improve this Doc 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
| Improve this Doc View SourceGetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<T> |
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator |