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

A delegate that mimics the behavior of the PatternMatchCallback. At some time in the future, this delegate should replace the PatternMatchCallback interface.

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

Syntax

Visual Basic (Declaration)
Public Delegate Sub PatternMatcherDelegate ( _
	matchEvent As EDictionary(Of String, EventBean) _
)
C#
public delegate void PatternMatcherDelegate (
	EDictionary<string, EventBean> matchEvent
)
Visual C++
public delegate void PatternMatcherDelegate (
	EDictionary<String^, EventBean^>^ matchEvent
)

Parameters

matchEvent
net.esper.compat.EDictionary<(Of K, V>)