Question

Control the workflow

  • 18 February 2022
  • 3 replies
  • 2 views

Badge +3

 

 

 

Hi,

 

Is the following possible?

An FME workspace writes to a table. After the writers are ready I want that process to continue with other transformers and an other writer which must be writing last. I don't want to create 2 workspaces.

 


3 replies

Userlevel 4

Look into using multiple FeatureWriter transformers, rather than the "classic" writers. You can chain them together to get the desired workflow.

Userlevel 6
Badge +32

Use FeatureWriters instead of Writers. These have a summary outputport. Connect a Sampler to the summary outputports, set the sampler to last 1 feature, and use that for following transformers and FeatureReaders.

Badge +3

Hi,

 

Multiple Featurewriters all connected to a FeartureHolder via Summary seems to work. Thanks for the tips.

 

Reply