Class Multicast

A multicast broadcast data from the input into two or more outputs. Every linked component will receive a copy of the rows that the Multicast receives. There is no limit how many target the Multicast can be linked to.

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class Multicast : Multicast<ExpandoObject>, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent, ILoggableTask
Examples
  Multicast<MyDataRow> multicast = new Multicast<MyDataRow>();
                                                                                 multicast.LinkTo(dest1);
                                                                                 multicast.LinkTo(dest2);
                                                                                 multicast.LinkTo(dest3);

Constructors

Multicast()

Declaration
    public Multicast()

Implements