EPL enhancements in 10.5.1
Apama 10.5.1 includes the following EPL enhancements:
The
ondie action can now have either no argument or the arguments
optional<com.apama.exceptions.Exception> and
optional<string>. See also
About executing ondie() actions.
In a sequence of sequences, in a dictionary of sequences or in cast operations, it is no longer required to add a space between two closing angle brackets (>). A syntax error no longer occurs when the space is missing. For example, instead of
dictionary<decimal, <sometype> >
you can now write
dictionary<decimal, <sometype>>
Both are valid EPL code.