Class Source<TSource>
- Namespace
- Bonsai
- Assembly
- Bonsai.Core.dll
Represents a generator of observable sequences of data elements.
[Combinator(MethodName = "Generate")]
[WorkflowElementCategory(ElementCategory.Source)]
public abstract class Source<TSource>
Type Parameters
TSource
The type of the elements emitted by the generator.
- Inheritance
-
Source<TSource>
- Derived
- Inherited Members
Methods
Generate()
Generates an observable sequence of data elements.
public abstract IObservable<TSource> Generate()
Returns
- IObservable<TSource>
An observable sequence of data elements of type
TSource
.