Stream type naming conventions
Stream types indicate the type of the tuples that flow in a stream.
A stream type describes a single tuple while a stream itself contains the flow of many tuples. Stream type names are not mandatory, but naming stream types when tuples have many attributes, or when it becomes cumbersome to continually write to the full type for a particular stream improves your program.
Follow these naming conventions for stream types:
- Similar to stream and operator names, use a camel case convention to name stream types (TradeQuote).
- Stream type names are singular nouns as opposed to streams themselves, which are plural nouns or adjectives.