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

kafka.entity.changelog.notification.ConsoleNotificationProvider Maven / Gradle / Ivy

package kafka.entity.changelog.notification;

public class ConsoleNotificationProvider implements NotificationProvider {

  @Override public void send(String event) {
    System.out.printf("CHANGELOG> %s%n", event);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy