Example #1
0
 internal FluentConsumerDefinitionThatConsumes(BlockInfo blockInfo, FlowConsumerSettings consumerSettings)
 {
     _blockInfo        = blockInfo;
     _consumerSettings = consumerSettings;
 }
 internal FlowConsumerDefinition(BlockInfo blockInfo, FlowConsumerSettings settings, Type actionType) : base(blockInfo, actionType, BlockType.Consumer)
 {
     Settings     = settings;
     InboundLinks = new List <FlowLinkDefinition>();
 }
Example #3
0
 public FluentConsumerDefinitionWithAction(BlockInfo blockInfo, FlowConsumerSettings consumerSettings)
 {
     _blockInfo        = blockInfo;
     _consumerSettings = consumerSettings;
 }