Is it possible to force a custom transformer to process features one at a time when there are blocking transformers within the custom transformer?
I run into this problem when I try to create a 3DGeneralizer and want to process lines individually.
Example: A custom transformer splitt lines into vertices. The lines are also generalized. NeighborFinder is used to match vertices and generalized lines. I want the NeighborFinder to only process features (line and vertices) from a single line at a time. If Group By is used in NeighborFinder it will block features until all lines have entered the custom transformer.
Thanks, Anders