Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KAFKA-14500; [2/N] Rewrite GroupMetadata in Java #13663

Merged
merged 15 commits into from
May 12, 2023
Prev Previous commit
Next Next commit
add group id getter
  • Loading branch information
jeffkbkim committed May 10, 2023
commit 461f7856a2e2eb82687fb8a7ad1bc30dd49b5f98
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,13 @@ public GenericGroup(
this.currentStateTimestamp = Optional.of(time.milliseconds());
}

/**
* @return the group id.
*/
public String groupId() {
return this.groupId;
}

/**
* @return the generation id.
*/
Expand Down