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

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

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

import java.util.function.Supplier;

import org.apache.kafka.streams.Topology;

import io.quarkus.arc.Arc;

public class TopologySupplier implements Supplier {

    @Override
    public Topology get() {
        return Arc.container().instance(Topology.class).get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy