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

Route the event object back to the event stream processing runtime for internal dispatching. The route event is processed just like it was sent to the runtime, that is any active expressions seeking that event receive it. The routed event has priority over other events sent to the runtime. In a single-threaded application the routed event is processed before the next event is sent to the runtime through the EPRuntime.sendEvent method.

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

Syntax

Visual Basic (Declaration)
Public Overridable Sub Route ( _
	_event As Object _
)
C#
public virtual void Route (
	Object _event
)
Visual C++
public:
virtual void Route (
	Object^ _event
)

Parameters

_event
System.Object