Enum Class CloseOptions.GroupMembershipOperation

java.lang.Object
java.lang.Enum<CloseOptions.GroupMembershipOperation>
org.apache.kafka.clients.consumer.CloseOptions.GroupMembershipOperation
All Implemented Interfaces:
Serializable, Comparable<CloseOptions.GroupMembershipOperation>, Constable
Enclosing class:
CloseOptions

public static enum CloseOptions.GroupMembershipOperation extends Enum<CloseOptions.GroupMembershipOperation>
Enum to specify the group membership operation upon leaving group.
  • LEAVE_GROUP: means the consumer will leave the group.
  • REMAIN_IN_GROUP: means the consumer will remain in the group.
  • DEFAULT: Applies the default behavior:
    • For static members: The consumer will remain in the group.
    • For dynamic members: The consumer will leave the group.