[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Perform the matching of an event based on the event property values, adding any callbacks for matches found to the matches list.

Namespace: net.esper.filter
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Sub MatchEvent ( _
	_event As EventBean, _
	matches As IList(Of FilterCallback) _
)
C#
public abstract void MatchEvent (
	EventBean _event,
	IList<FilterCallback> matches
)
Visual C++
public:
virtual void MatchEvent (
	EventBean^ _event, 
	IList<FilterCallback^>^ matches
) abstract

Parameters

_event
net.esper.events.EventBean
is the event object wrapper to obtain event property values from
matches
System.Collections.Generic.IList<(Of T>)
accumulates the matching filter callbacks