Click or drag to resize

SelectClauseStreamWildcard Class

For use in a select clause, this element in a select clause defines that for a given stream we want to select the underlying type. Most often used in joins to select wildcard from one of the joined streams.

For example:

select streamOne.* from StreamOne as streamOne, StreamTwo as
            streamTwo
Inheritance Hierarchy
SystemObject
  com.espertech.esper.common.client.sodaSelectClauseStreamWildcard

Namespace:  com.espertech.esper.common.client.soda
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
[SerializableAttribute]
public class SelectClauseStreamWildcard : SelectClauseElement

The SelectClauseStreamWildcard type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyOptionalColumnName
Returns the optional column name (e.g. select streamName.* as colName from MyStream as streamName)
Public propertyStreamName
Returns the stream name (e.g. select streamName.* as colName from MyStream as streamName)
Top
Methods
  NameDescription
Public methodToEPLElement
Renders the element in textual representation.
Top
Extension Methods
  NameDescription
Public Extension MethodToEPL
Converts the element to a string.
(Defined by SelectClauseElementExtension.)
Top
See Also