Versions Compared

Key

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

...

You need to define parameters if the operator should be configurable while building a continuous query. A parameter can be optional and consists of a data type and a name.

 

Code Block
titleExample
operator ODLSelect(outputMode = "INPUT", minInputPorts = 1, maxInputPorts = 1){   

    parameter IPredicate predicate;

    optional parameter int heartbeatrate;

}

...