Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
* 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.kafka.clients.consumer;

import org.apache.kafka.common.annotation.InterfaceStability;

import java.util.Locale;

@InterfaceStability.Evolving
public enum AcknowledgeType {
/** The record was consumed successfully. */
ACCEPT((byte) 1),

/** The record was not consumed successfully. Release it for another delivery attempt. */
RELEASE((byte) 2),

/** The record was not consumed successfully. Reject it and do not release it for another delivery attempt. */
REJECT((byte) 3);

public final byte id;

AcknowledgeType(byte id) {
this.id = id;
}

@Override
public String toString() {
return super.toString().toLowerCase(Locale.ROOT);
}


public static AcknowledgeType forId(byte id) {
switch (id) {
case 1:
return ACCEPT;
case 2:
return RELEASE;
case 3:
return REJECT;
default:
throw new IllegalArgumentException("Unknown acknowledge type id: " + id);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* 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.kafka.clients.consumer;

import org.apache.kafka.common.KafkaException;
import org.apache.kafka.common.TopicIdPartition;
import org.apache.kafka.common.annotation.InterfaceStability;
import org.apache.kafka.common.errors.AuthorizationException;
import org.apache.kafka.common.errors.InterruptException;
import org.apache.kafka.common.errors.InvalidRecordStateException;
import org.apache.kafka.common.errors.WakeupException;

import java.util.Map;
import java.util.Set;

/**
* A callback interface that the user can implement to trigger custom actions when an acknowledgement completes.
* The callback may be executed in any thread calling {@link ShareConsumer#poll(java.time.Duration)}.
*/
@InterfaceStability.Evolving
public interface AcknowledgementCommitCallback {

/**
* A callback method the user can implement to provide asynchronous handling of acknowledgement completion.
* This method will be called when the acknowledgement request sent to the server has been completed.
*
* @param offsets A map of the offsets that this callback applies to.
*
* @param exception The exception thrown during processing of the request, or null if the acknowledgement completed successfully.
* <p><ul>
* <li> {@link InvalidRecordStateException} if the record state is invalid
* <li> {@link AuthorizationException} if not authorized to the topic of group
* <li> {@link WakeupException} if {@link KafkaShareConsumer#wakeup()} is called before or while this function is called
* <li> {@link InterruptException} if the calling thread is interrupted before or while this function is called
* <li> {@link KafkaException} for any other unrecoverable errors
* </ul>
*/
void onComplete(Map<TopicIdPartition, Set<Long>> offsets, Exception exception);
}
Loading