Versions Compared

Key

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

...

  • heartbeatrate: The rate to generate heartbeats if an element was processed without given a result.
  • query (required): The SASE+ query
  • OneMatchPerInstance

Example

...

languagejavascript
themeEclipse
titleSASE Operator
linenumberstrue

...

  • schema (required): The output schema of the created event (see Access Operators for an example)
  • type (required): The type of the created event 

Example

...


Code Block
#PARSER PQL
#RUNQUERY
out = SASE({
    query = 'PATTERN SEQ(person p, bid b) WHERE skip_till_next_match(p,b){p.id = b.bidder, b.price > 200} RETURN p.id, p.name, b.price',
    schema=[['id','Integer'],['name','String'],['price','double']],
    type='PersonEvent1'
  } ,
  person,
  bid
)