I'm starting a new stream by using the statement:
insert into middleLayerStream
select id, 'response' as constraint
from[...]
Afterwards I'm starting a SELECT-query to the middleLayerStream. In die update-function of my middleLayerStream I want to print out the properties of the stream.
This is my update function:
public class MiddleLayerListener implement UpdateListener {
public void update(EventBean[] newEvents, EventBean[] oldEvents) {
EventBeant[] event = newEvents[0];
System.out.println(event.getUnderlying());
}
}
When the update-function is called, I don't get the properties but this statement instead:
{a=MapEventBean eventType=com.espertech.esper.event.map.MapEventType@52500920, b=MapEventBean eventType=com.espertech.esper.event.map.MapEventType@52500920}
How do I get access to the properties?
I just found out, that event is not a simple EventBean but a MapEventBean. Maybe it's because two different types of events (but with the same properties) are inserted into the stream. But how can i handle a MapEventBean and get the properties out of it?
Thank you very much for your help.
The EventBean interface offers a "get" method that returns an event property value by name.
You left off the "from" in your post so it wasn't possible to see what was selected. I assume that you have a pattern in the "from" such as "a=A -> b=B".
In the case of a pattern returning a nested event
event.get("a.id")
orevent.get("a")
orevent.getFragment("a")
orselect a.id as id from [...]
would do.