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

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

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

import io.github.clescot.kafka.connect.http.client.ahc.AHCHttpClientFactory;
import org.asynchttpclient.Request;
import org.asynchttpclient.Response;

public class AHCSinkTask extends HttpSinkTask {
    public AHCSinkTask() {
        super(new AHCHttpClientFactory());
    }

    protected AHCSinkTask(boolean mock) {
        super(new AHCHttpClientFactory(),mock);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy