blob: 4fb90e0fdd90836b79b98de8b1564be5ea189147 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.kafka;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import org.apache.camel.CamelContext;
import org.apache.camel.Exchange;
import org.apache.camel.impl.UriEndpointComponent;
public class KafkaComponent extends UriEndpointComponent {
private ExecutorService workerPool;
public KafkaComponent() {
super(KafkaEndpoint.class);
}
public KafkaComponent(CamelContext context) {
super(context, KafkaEndpoint.class);
}
@Override
protected KafkaEndpoint createEndpoint(String uri, String remaining, Map<String, Object> params) throws Exception {
KafkaEndpoint endpoint = new KafkaEndpoint(uri, this);
String brokers = remaining.split("\\?")[0];
if (brokers != null) {
endpoint.getConfiguration().setBrokers(brokers);
}
// configure component options before endpoint properties which can override from params
endpoint.getConfiguration().setWorkerPool(workerPool);
setProperties(endpoint.getConfiguration(), params);
setProperties(endpoint, params);
return endpoint;
}
public ExecutorService getWorkerPool() {
return workerPool;
}
/**
* To use a shared custom worker pool for continue routing {@link Exchange} after kafka server has acknowledge
* the message that was sent to it from {@link KafkaProducer} using asynchronous non-blocking processing.
* If using this option then you must handle the lifecycle of the thread pool to shut the pool down when no longer needed.
*/
public void setWorkerPool(ExecutorService workerPool) {
this.workerPool = workerPool;
}
}