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

io.github.clescot.kafka.connect.http.sink.PublishMode Maven / Gradle / Ivy

There is a newer version: 0.7.232
Show newest version
package io.github.clescot.kafka.connect.http.sink;

public enum PublishMode {
    /**
     *  with a Sink Connector, grab HTTP messages to query from a topic, publish HTTP results in an in memory queue, which will be published
     *  in a resulting topic with a source Connector
     */
    IN_MEMORY_QUEUE,
    /**
     * with a Sink Connector, grab HTTP messages to query from a topic, and publish HTTP results in a final topic
     * with an embedded low level producer
     */
    PRODUCER,
    /**
     * with a Sink Connector, grab HTTP messages to query from a topic, and does NOT publish HTTP results
     */
    NONE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy