Versions Compared

Key

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

The timer transport handler can be used as a periodic data source, which either sends the system time or the time passed since the query started. Can be used with the Command operator.

Options

  • period: The period in milliseconds
  • timefromstart: If set to true, start from 0. Else start from Jan 1th 1970. (Default: false)

Commands

  • setperiod: TODO

Example

PQL

Code Block
languagepql
titleExample
linenumberstrue
input = ACCESS({source='Source',
wrapper='GenericPush',
transport='Timer',
protocol='None',
dataHandler='Tuple',
options=[['period', '1000'], ['timefromstart', 'true'],
schema=[['time', 'Timestamp']]
})

or shorter:

input = TIMER({PERIOD = 1000, TIMEFROMSTART = true, SOURCE = 'Source'}) 

...