Uses of Class
net.esper.filter.FilterSpecCompiled

Packages that use FilterSpecCompiled
net.esper.eql.spec Contains EQL statement specification classes define the constructs that make up an EQL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. 
net.esper.filter Main switchboard filtering and routing of incoming events to interested statements is performed in this package. 
net.esper.pattern Pattern expression tree and pattern state objects, the later resembles pattern expression state for each active pattern instance 
net.esper.view.stream View to event stream relationship service 
 

Uses of FilterSpecCompiled in net.esper.eql.spec
 

Methods in net.esper.eql.spec that return FilterSpecCompiled
 FilterSpecCompiled FilterStreamSpecCompiled.getFilterSpec()
          Returns filter specification for which events the stream will getSelectListEvents.
 

Constructors in net.esper.eql.spec with parameters of type FilterSpecCompiled
FilterStreamSpecCompiled(FilterSpecCompiled filterSpec, List<ViewSpec> viewSpecs, String optionalStreamName)
          Ctor.
 

Uses of FilterSpecCompiled in net.esper.filter
 

Methods in net.esper.filter that return FilterSpecCompiled
static FilterSpecCompiled FilterSpecCompiler.makeFilterSpec(EventType eventType, List<ExprNode> filterExpessions, LinkedHashMap<String,EventType> taggedEventTypes, StreamTypeService streamTypeService, AutoImportService autoImportService)
          Factory method for compiling filter expressions into a filter specification for use with filter service.
 

Uses of FilterSpecCompiled in net.esper.pattern
 

Methods in net.esper.pattern that return FilterSpecCompiled
 FilterSpecCompiled EvalFilterNode.getFilterSpec()
          Returns filter specification.
 

Methods in net.esper.pattern with parameters of type FilterSpecCompiled
 void EvalFilterNode.setFilterSpec(FilterSpecCompiled filterSpec)
          Sets a validated and optimized filter specification
 

Constructors in net.esper.pattern with parameters of type FilterSpecCompiled
EvalFilterStateNode(Evaluator parentNode, FilterSpecCompiled filterSpec, String eventAsName, MatchedEventMap beginState, PatternContext context)
          Constructor.
 

Uses of FilterSpecCompiled in net.esper.view.stream
 

Methods in net.esper.view.stream with parameters of type FilterSpecCompiled
 EventStream StreamFactorySvcImpl.createStream(FilterSpecCompiled filterSpec, FilterService filterService, EPStatementHandle epStatementHandle, boolean isJoin)
          See the method of the same name in StreamFactoryService.
 EventStream StreamFactoryService.createStream(FilterSpecCompiled filterSpec, FilterService filterService, EPStatementHandle epStatementHandle, boolean isJoin)
          Create or reuse existing EventStream instance representing that event filter.
 void StreamFactorySvcImpl.dropStream(FilterSpecCompiled filterSpec, FilterService filterService, boolean isJoin)
          See the method of the same name in StreamFactoryService.
 void StreamFactoryService.dropStream(FilterSpecCompiled filterSpec, FilterService filterService, boolean isJoin)
          Drop the event stream associated with the filter passed in.