Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#PARSER PQL
#ADDQUERY

/// Just a trigger, that fire every second
heart = TIMER({PERIOD = 1000, SOURCE = 'source'})
 
/// A counter to simulate values
prep = MAP({
	 expressions = [['counter()','count']],
	 evaluateonpunctuation = true
 	},
 heart
 ) 
 
/// Create a new punctuation each time count is higher than 0 and count MOD 10 is 0
/// Create filename from count-Attribute (important: use full path!)
punc = CREATENEWFILENAMEPUNCTUATIONCreateNewFilenamePunctuation({
 	  filename = '"${WORKSPACEPROJECT}/out/"+toString(count)+".csv"',
	  predicate = 'count % 10 = 0 && count > 0'
 	},
 prep
 )
 
/// File sink automatically reacts on new punctuation and replaces the filename with the one
/// generated from CreateNewFilenamePunctuation, a new filename will only be 
outused, if the 
/// filename differs from last filename!
 out = CSVFILESINK({FILENAME = '${WORKSPACEPROJECT}/out/0.csv', SINK = 'sink'}, punc)