dev.responsive.kafka.internal.clients.DelegatingProducer Maven / Gradle / Ivy
/*
* Copyright 2024 Responsive Computing, Inc.
*
* Licensed 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 dev.responsive.kafka.internal.clients;
import java.time.Duration;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Future;
import org.apache.kafka.clients.consumer.ConsumerGroupMetadata;
import org.apache.kafka.clients.consumer.OffsetAndMetadata;
import org.apache.kafka.clients.producer.Callback;
import org.apache.kafka.clients.producer.Producer;
import org.apache.kafka.clients.producer.ProducerRecord;
import org.apache.kafka.clients.producer.RecordMetadata;
import org.apache.kafka.common.Metric;
import org.apache.kafka.common.MetricName;
import org.apache.kafka.common.PartitionInfo;
import org.apache.kafka.common.TopicPartition;
import org.apache.kafka.common.Uuid;
import org.apache.kafka.common.errors.ProducerFencedException;
public abstract class DelegatingProducer implements Producer {
private final Producer delegate;
public DelegatingProducer(final Producer delegate) {
this.delegate = delegate;
}
@Override
public void initTransactions() {
delegate.initTransactions();
}
@Override
public void beginTransaction() throws ProducerFencedException {
delegate.beginTransaction();
}
@Override
@SuppressWarnings("deprecation")
public void sendOffsetsToTransaction(
final Map offsets,
final String consumerGroupId
) throws ProducerFencedException {
delegate.sendOffsetsToTransaction(offsets, consumerGroupId);
}
@Override
public void sendOffsetsToTransaction(
final Map offsets,
final ConsumerGroupMetadata groupMetadata
) throws ProducerFencedException {
delegate.sendOffsetsToTransaction(offsets, groupMetadata);
}
@Override
public void commitTransaction() throws ProducerFencedException {
delegate.commitTransaction();
}
@Override
public void abortTransaction() throws ProducerFencedException {
delegate.abortTransaction();
}
@Override
public Future send(final ProducerRecord record) {
return delegate.send(record);
}
@Override
public Future send(final ProducerRecord record, final Callback callback) {
return delegate.send(record, callback);
}
@Override
public void flush() {
delegate.flush();
}
@Override
public List partitionsFor(final String topic) {
return delegate.partitionsFor(topic);
}
@Override
public Map metrics() {
return delegate.metrics();
}
@Override
public Uuid clientInstanceId(final Duration duration) {
return delegate.clientInstanceId(duration);
}
@Override
public void close() {
delegate.close();
}
@Override
public void close(final Duration timeout) {
delegate.close();
}
}