DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
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;
}
} |
...