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

io.quarkus.kafka.streams.runtime.KafkaStreamsSupport Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.kafka.streams.runtime;

import java.util.Properties;

public class KafkaStreamsSupport {

    private final Properties properties;

    public KafkaStreamsSupport(Properties properties) {
        this.properties = properties;
    }

    public Properties getProperties() {
        return properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy