Uses of Class
net.esper.client.soda.Stream

Packages that use Stream
net.esper.client.soda This package defines the Esper statement object model. 
 

Uses of Stream in net.esper.client.soda
 

Subclasses of Stream in net.esper.client.soda
 class FilterStream
          A stream upon which projections (views) can be added that selects events by name and filter expression.
 class PatternStream
          A stream of events that is generated by pattern matches.
 class ProjectedStream
          Abstract base class for streams that can be projected via views providing data window, uniqueness or other projections or deriving further information from streams.
 class SQLStream
          An SQL stream that polls via SQL for events via join.
 

Methods in net.esper.client.soda that return types with arguments of type Stream
 List<Stream> FromClause.getStreams()
          Returns the list of streams in the from-clause.
 

Methods in net.esper.client.soda with parameters of type Stream
 FromClause FromClause.add(Stream stream)
          Adds a stream.
static FromClause FromClause.create(Stream... streams)
          Creates a from clause that selects from a single stream.
static FromClause FromClause.create(Stream stream, OuterJoinQualifier outerJoinQualifier, Stream streamSecond)
          Creates a from-clause that lists 2 projected streams joined via outer join.
 

Constructors in net.esper.client.soda with parameters of type Stream
FromClause(Stream... streamsList)
          Ctor.
FromClause(Stream streamOne, OuterJoinQualifier outerJoinQualifier, Stream streamTwo)
          Ctor for an outer join between two streams.