Group Parameters
This interface represents a set of group parameters under which all members of a group are expected to abide by. Parameters are stored as a LayeredPropertyMap and exposed via interface properties.
Note: any values in the group parameters values map need to be a.) serializable for P2P (AMQP) and checkpoints (Kryo) b.) comparable with .equals()
Example usages:
GroupParameters groupParameters = fullTransaction.getMembershipParameters();
int minimumPlatformVersion = groupParameters.getMinimumPlatformVersion();
Instant modifiedTime = groupParameters.getModifiedTime();
int epoch = groupParameters.getEpoch();
Collection<NotaryInfo> notaries = groupParameters.getNotaries();Content copied to clipboard
val groupParameters = fullTransaction.membershipParameters
val minimumPlatformVersion = groupParameters?.minimumPlatformVersion
val modifiedTime = groupParameters?.modifiedTime
val epoch = groupParameters?.epoch
val notaries = groupParameters?.notariesContent copied to clipboard
Functions
Properties
Link copied to clipboard
The Instant representing the last time the group parameters were modified.