Click or drag to resize

EPEventServiceSendEventSendEventAvro Method

Send an event represented by a Avro GenericData.Record 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#routeEventAvro(Object, String)}}).

Namespace:  com.espertech.esper.runtime.client
Assembly:  NEsper.Runtime (in NEsper.Runtime.dll) Version: 8.0.0.0
Syntax
C#
void SendEventAvro(
	Object avroGenericDataDotRecord,
	string avroEventTypeName
)

Parameters

avroGenericDataDotRecord
Type: SystemObject
is the event to sent to the runtime
avroEventTypeName
Type: SystemString
event type name
See Also