Package com.espertech.esper.collection

Examples of com.espertech.esper.collection.UniformPair


     * Returns a pair of insert and remove stream event arrays considering the all invocations, and resets the listener.
     * @return pair of event arrays, the first in the pair is the insert stream data, the second in the pair is the remove stream data
     */
    public UniformPair<EventBean[]> getAndResetDataListsFlattened()
    {
        UniformPair pair = getDataListsFlattened();
        reset();
        return pair;
    }
View Full Code Here


     * Returns a pair of insert and remove stream event arrays considering the all invocations, and resets the listener.
     * @return pair of event arrays, the first in the pair is the insert stream data, the second in the pair is the remove stream data
     */
    public synchronized UniformPair<EventBean[]> getAndResetDataListsFlattened()
    {
        UniformPair pair = getDataListsFlattened();
        reset();
        return pair;
    }
View Full Code Here

TOP

Related Classes of com.espertech.esper.collection.UniformPair

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.