Class Visualizer
Represents an expression builder that uses the encapsulated workflow as a visualizer to an observable sequence without modifying its elements.
The Visualizer operator is a Sink which uses the nested workflow to specify a reactive visualizer function over the elements of the source sequence. Visualizer emits all values from the source sequence directly without modification, and the nested sequence is subscribed to purely for its side-effects.
Note
All notifications emitted by the inner WorkflowOutput node are ignored. However, the type visualizer assigned to the nested workflow output will be considered as the default visualizer of the outer node.
Examples
Use Visualizer to use the encapsulated workflow as a visualizer without changing the elements in the original sequence.
[WorkflowElementCategory(ElementCategory.Sink)]
public class Visualizer : Sink, IWorkflowExpressionBuilder, INamedElement, IPropertyMappingBuilder, IExpressionBuilder
- Inheritance
-
Visualizer
- Implements
- Inherited Members
- Extension Methods
Constructors
- Visualizer()
Initializes a new instance of the Visualizer class.
- Visualizer(ExpressionBuilderGraph)
Initializes a new instance of the Visualizer class with the specified expression builder workflow.