election method

  1. @MPI(name: "mesh.cluster.election")
Future<Uint8List?> election(
  1. Uint8List buff, {
  2. Context? ctx,
})

Election will election leader of instances.

Implementation

@MPI(name: "mesh.cluster.election")
Future<Uint8List?> election(Uint8List buff, {Context? ctx}) {
  throw UnimplementedError('election() has not been implemented.');
}