com.github.jcustenborder.kafka.connect.utils.config.TaskConfigs Java Examples

The following examples show how to use com.github.jcustenborder.kafka.connect.utils.config.TaskConfigs. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: RedisSinkConnector.java    From kafka-connect-redis with Apache License 2.0 4 votes vote down vote up
@Override
public List<Map<String, String>> taskConfigs(int count) {
  return TaskConfigs.multiple(this.settings, count);
}
 
Example #2
Source File: SpoolDirLineDelimitedSourceConnector.java    From kafka-connect-spooldir with Apache License 2.0 4 votes vote down vote up
@Override
public List<Map<String, String>> taskConfigs(int i) {
  return TaskConfigs.single(this.settings);
}
 
Example #3
Source File: SolrSinkConnector.java    From kafka-connect-solr with Apache License 2.0 4 votes vote down vote up
@Override
public List<Map<String, String>> taskConfigs(int count) {
  return TaskConfigs.multiple(this.config, count);
}