 | EPEventServiceSendEventSendEventObjectArray Method |
Send an object array containing event property values to the runtime.
Use the route method for sending events into the runtime from within UpdateListener code.
to avoid the possibility of a stack overflow due to nested calls to sendEvent
(except with the outbound-threading configuration), see {@link EPEventServiceRouteEvent#routeEventObjectArray(Object[], String)}.
Namespace:
com.espertech.esper.runtime.client
Assembly:
NEsper.Runtime (in NEsper.Runtime.dll) Version: 8.0.0.0
Syntaxvoid SendEventObjectArray(
Object[] event,
string eventTypeName
)
Parameters
- event
- Type: SystemObject
array that contains event property values. Your application must ensure that property values match the exact same order that the property names and types have been declared, and that the array length matches the number of properties declared.
- eventTypeName
- Type: SystemString
event type name
See Also