/* *************************************************************************************** * Copyright (C) 2006 EsperTech, Inc. All rights reserved. * * http://www.espertech.com/esper * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * *************************************************************************************** */ package com.espertech.esper.epl.core; import com.espertech.esper.client.EventBean; import com.espertech.esper.collection.TransformEventMethod; import com.espertech.esper.collection.UniformPair; /** * Method to transform an event based on the select expression. */ public class ResultSetProcessorSimpleTransform implements TransformEventMethod { private final ResultSetProcessorBaseSimple resultSetProcessor; private final EventBean[] newData; /** * Ctor. * * @param resultSetProcessor is applying the select expressions to the events for the transformation */ public ResultSetProcessorSimpleTransform(ResultSetProcessorBaseSimple resultSetProcessor) { this.resultSetProcessor = resultSetProcessor; newData = new EventBean[1]; } public EventBean transform(EventBean theEvent) { newData[0] = theEvent; UniformPair<EventBean[]> pair = resultSetProcessor.processViewResult(newData, null, true); return pair == null ? null : (pair.getFirst() == null ? null : pair.getFirst()[0]); } }