Table of Contents

Method Generate

Namespace
Bonsai.Expressions
Assembly
Bonsai.Core.dll

Generate()

Generates an observable sequence that produces a value whenever the workflow property changes, starting with the initial property value.

public virtual IObservable<DateTimeOffset> Generate()

Returns

IObservable<DateTimeOffset>

An observable sequence of property values.

Generate<TSource>(IObservable<TSource>)

Generates an observable sequence that produces a value whenever the source sequence emits a new element.

public IObservable<DateTimeOffset> Generate<TSource>(IObservable<TSource> source)

Parameters

source IObservable<TSource>

The source sequence used to generate new values.

Returns

IObservable<DateTimeOffset>

An observable sequence of property values.

Type Parameters

TSource

The type of the elements in the source sequence.