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

com.espertech.esperio.kafka.EsperIOKafkaInputProcessorContext Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show newest version
/*
 ***************************************************************************************
 *  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.esperio.kafka;

import com.espertech.esper.runtime.internal.kernel.service.EPRuntimeSPI;
import org.apache.kafka.clients.consumer.KafkaConsumer;

import java.util.Properties;

public class EsperIOKafkaInputProcessorContext {
    private final KafkaConsumer consumer;
    private final EPRuntimeSPI runtime;
    private final Properties properties;
    private final EsperIOKafkaInputAdapter adapter;

    public EsperIOKafkaInputProcessorContext(KafkaConsumer consumer, EPRuntimeSPI runtime, Properties properties, EsperIOKafkaInputAdapter adapter) {
        this.consumer = consumer;
        this.runtime = runtime;
        this.properties = properties;
        this.adapter = adapter;
    }

    public KafkaConsumer getConsumer() {
        return consumer;
    }

    public EPRuntimeSPI getRuntime() {
        return runtime;
    }

    public Properties getProperties() {
        return properties;
    }

    public EsperIOKafkaInputAdapter getAdapter() {
        return adapter;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy