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

com.github.linyuzai.event.kafka.exchange.KafkaEndpointExchange Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.github.linyuzai.event.kafka.exchange;

import com.github.linyuzai.event.core.exchange.EndpointExchange;

import java.util.Collection;

public class KafkaEndpointExchange extends EndpointExchange {

    public KafkaEndpointExchange(String... endpoints) {
        super(new KafkaEngineExchange(), endpoints);
    }

    public KafkaEndpointExchange(Collection endpoints) {
        super(new KafkaEngineExchange(), endpoints);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy