Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
import org.apache.kafka.clients.admin.AdminClient;
 
public interface KafkaClientSupplier {
    // other existing APIs

    /**
     * Create a {@link AdminClient} which is used tofor readinternal records to restore {@link StateStore}stopic management.
     *
     * @param config {@link StreamsConfig#getRestoreConsumerConfigs(String) restore consumer config} which is supplied
     *               Supplied by the {@link StreamsConfig} given to the {@link KafkaStreams}
     * @return an instance of Kafka{@link consumerAdminClient}
     */
    AdminClient getAdminCLient(final Map<String, Object> config);
}

 

...

 

Proposed Changes

Describe the new thing you want to do in appropriate detail. This may be fairly extensive and have large subsections of its own. Or it may be a few sentences. Use judgement based on the scope of the change.

...