Skip to content

Instantly share code, notes, and snippets.

@Swarnim-singhal
Created September 1, 2020 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swarnim-singhal/c9c855b3c36ce043a85bcb8bd35f257b to your computer and use it in GitHub Desktop.
Save Swarnim-singhal/c9c855b3c36ce043a85bcb8bd35f257b to your computer and use it in GitHub Desktop.
public class GossipDigestSyn {
final String clusterId;
final String partioner;
final List<GossipDigest> gDigests;
public GossipDigestSyn(String clusterId, String partioner, List<GossipDigest> gDigests{
this.clusterId = clusterId;
this.partioner = partioner;
this.gDigests = gDigests;
}
List<GossipDigest> getGossipDigests() {
return gDigests;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment