Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleShareGroupDescription
linenumberstrue
public class ShareGroupDescription {
    private final String groupId;
    private final Collection<MemberDescription> members;
    private final ShareGroupState state;
    private final Node coordinator;
    private final Set<AclOperation> authorizedOperations;
	private final Integerint groupEpoch;
    private final Integerint targetAssignmentEpoch;

 	// ...

	/**
	 * The epoch of the share group.
	 */
	public Integerint groupEpoch() {
		return groupEpoch;
	}

	/**
	 * The epoch of the target assignment.
	 */
	public Integerint targetAssignmentEpoch() {
		return targetAssignmentEpoch;
	}
}

...