Skip to content

touchbit/kakafka

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kakafka

import kakafka.client.api.KakafkaTopic;
import lombok.Getter;

@Getter
public enum Topic implements KakafkaTopic {

    PAYMENT_INCOMING_TOPIC("payment.incoming"),
    PAYMENT_OK_TOPIC("payment.ok"),
    PAYMENT_ERROR_TOPIC("payment.error"),
    ;

    private final String name;

    Topic(String name) { this.name = name; }
}
import kakafka.client.KakafkaClientBase;
import kakafka.client.KakafkaProperties;

import static kakafka.example.Topic.PAYMENT_ERROR_TOPIC;
import static kakafka.example.Topic.PAYMENT_INCOMING_TOPIC;
import static kakafka.example.Topic.PAYMENT_OK_TOPIC;

public class IncomingPaymentsKafkaClient extends KakafkaClientBase {

    private static final KakafkaProperties PROPS = new KakafkaProperties("localhost:9092,another.host:9092")
            .withPlainSASL("login", "password")
            .withHttps(true, false);

    protected IncomingPaymentsKafkaClient() {
        super(PROPS, PAYMENT_INCOMING_TOPIC, PAYMENT_OK_TOPIC, PAYMENT_ERROR_TOPIC);
    }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published