All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.espertech.esper.runtime.internal.kernel.thread.OutboundUnitRunnable Maven / Gradle / Ivy

/*
 ***************************************************************************************
 *  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.runtime.internal.kernel.thread;

import com.espertech.esper.common.client.EventBean;
import com.espertech.esper.common.internal.collection.UniformPair;
import com.espertech.esper.runtime.internal.kernel.service.StatementResultServiceImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Outbound unit.
 */
public class OutboundUnitRunnable implements Runnable {
    private static final Logger log = LoggerFactory.getLogger(OutboundUnitRunnable.class);

    private final UniformPair events;
    private final StatementResultServiceImpl statementResultService;

    /**
     * Ctor.
     *
     * @param events                 to dispatch
     * @param statementResultService handles result indicate
     */
    public OutboundUnitRunnable(UniformPair events, StatementResultServiceImpl statementResultService) {
        this.events = events;
        this.statementResultService = statementResultService;
    }

    public void run() {
        try {
            statementResultService.processDispatch(events);
        } catch (RuntimeException e) {
            log.error("Unexpected error processing dispatch: " + e.getMessage(), e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy