Is there a way to signal to the PipelineBuffer during ProcessInput that no more rows are necessary
Say I have a component's output connected to a custom destination component... in the destination component's properties, I can set the number of rows I want to consume. (The first 50 rows for example.) If I do it this way, the source component continues delivering rows - I can set my destination to ignore all rows after 50, but would like a way to tell the component above it "no more!"
Is this possible
Steve

closing pipelinebuffer
Viral Parikh
-Jamie
Steve1234567
notanotherusername
C Shah
This will be helpful for debugging too... I can debug with only 10 rows and if everything is fine, I can run the 1,000,000 rows later.
szevvy
Thanks,
Matt
Fabriz
I don't think this can be done, and not sure that it is a good idea even if you could. It would be like cancelling the package, mid-flow.
Mark Blackburn
Also tried using buffer.Discard() but it seems to not have any effect on stopping the rows from continuing into the component.
Steve