Title here
Summary here
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.
Name | Description |
---|---|
TInput | Type of ingoing data. |
Multicast<MyDataRow> multicast = new Multicast<MyDataRow>();
multicast.LinkTo(dest1);
multicast.LinkTo(dest2);
multicast.LinkTo(dest3);
Type | Description |
---|---|
Func<TInput, TInput> |
SourceBlock from the underlying TPL.Dataflow which is used as output buffer for the component.
Type | Description |
---|---|
ISourceBlock<TInput> |
TargetBlock from the underlying TPL.Dataflow which is used as input buffer for the component.
Type | Description |
---|---|
ITargetBlock<TInput> |
Type | Name | Description |
---|---|---|
Exception | e |