Excerpt | ||
---|---|---|
| ||
Siddhi Event Definitions in wiki format |
...
Following example shows a sample stream definition;
Defining a stream called StockExchangeStream having three attributes, where symbol of type string, price of type float and volume of type int.
define stream StockExchangeStream (symbol string, price float, volume int );
...