Uses of Class
com.espertech.esper.common.client.soda.Stream
Packages that use Stream
Package
Description
This package defines the Esper statement object model.
-
Uses of Stream in com.espertech.esper.common.client.soda
Subclasses of Stream in com.espertech.esper.common.client.sodaModifier and TypeClassDescriptionclass
A stream upon which projections (views) can be added that selects events by name and filter expression.class
An stream that polls from a method.class
A stream of events that is generated by pattern matches.class
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
An SQL stream that polls via SQL for events via join.Methods in com.espertech.esper.common.client.soda that return types with arguments of type StreamModifier and TypeMethodDescriptionFromClause.getStreams()
Returns the list of streams in the from-clause.Methods in com.espertech.esper.common.client.soda with parameters of type StreamModifier and TypeMethodDescriptionAdds a stream.static FromClause
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.Method parameters in com.espertech.esper.common.client.soda with type arguments of type StreamModifier and TypeMethodDescriptionvoid
FromClause.setStreams
(List<Stream> streams) Set the streams.Constructors in com.espertech.esper.common.client.soda with parameters of type StreamModifierConstructorDescriptionFromClause
(Stream... streamsList) Ctor.FromClause
(Stream streamOne, OuterJoinQualifier outerJoinQualifier, Stream streamTwo) Ctor for an outer join between two streams.