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

dev.responsive.kafka.internal.stores.ResponsiveMaterialized Maven / Gradle / Ivy

The newest version!
package dev.responsive.kafka.internal.stores;

import org.apache.kafka.streams.kstream.Materialized;
import org.apache.kafka.streams.processor.StateStore;

public class ResponsiveMaterialized extends Materialized {

  public ResponsiveMaterialized(
      final Materialized materialized
  ) {
    super(materialized);
  }

  @Override
  public Materialized withLoggingDisabled() {
    throw new UnsupportedOperationException(
        "Responsive stores are currently incompatible with disabling the changelog. "
            + "Please reach out to us to request this feature.");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy