DataflowBlock.AsObservable<TOutput>(ISourceBlock<TOutput>) Method

Definition

Creates a new IObservable<T> abstraction over the ISourceBlock<TOutput>.

public:
generic <typename TOutput>
[System::Runtime::CompilerServices::Extension]
 static IObservable<TOutput> ^ AsObservable(System::Threading::Tasks::Dataflow::ISourceBlock<TOutput> ^ source);
public static IObservable<TOutput> AsObservable<TOutput> (this System.Threading.Tasks.Dataflow.ISourceBlock<TOutput> source);
static member AsObservable : System.Threading.Tasks.Dataflow.ISourceBlock<'Output> -> IObservable<'Output>
<Extension()>
Public Function AsObservable(Of TOutput) (source As ISourceBlock(Of TOutput)) As IObservable(Of TOutput)

Type Parameters

TOutput

Specifies the type of data contained in the source.

Parameters

source
ISourceBlock<TOutput>

The source to wrap.

Returns

IObservable<TOutput>

An IObservable<T> that enables observers to be subscribed to the source.

Exceptions

The source is null.

Applies to