public interface InputConfig
Configuration related to the messages consumed by the Processor
  • Method Details

    • topic

      Optional<String> topic()
      Single topic to listen to.

      If you need more than one, use topics() or sources().

    • topics

      Optional<List<String>> topics()
      List of topics to listen to.

      If you need only one, use topic()

    • sources

      Map<String,SourceConfig> sources()
      Additional structure to have multiple sources define and tel for each the topic(s) to use.

      Allows to regroup topics by sources in multi-input use cases.