示例#1
0
        protected FlowTransformerDefinitionBase(BlockInfo blockInfo, FlowTargetSettings settings, Type actionType, BlockType blockType)
            : base(blockInfo, actionType, blockType)
        {
            Settings = settings;

            OutboundLinks = new List <FlowLinkDefinition <TOut> >();
            InboundLinks  = new List <FlowLinkDefinition>();
        }
示例#2
0
 internal FlowBatcherDefinition(BlockInfo blockInfo, FlowTargetSettings settings) : base(blockInfo, settings, null, BlockType.Batcher)
 {
 }