collect method

  1. @MPI(name: "_{mesh.name}.cipher.collect")
Future<int?> collect(
  1. CipherObject obj, {
  2. Context? ctx,
})

Collect cipher objects with group. Asyncable can be invoked by multi times.

Parameters:

  • obj: obj Returns:
  • int 1 for success, 0 for failed

Implementation

@MPI(name: "_{mesh.name}.cipher.collect")
Future<int?> collect(CipherObject obj, {Context? ctx}) {
  throw UnimplementedError('collect() has not been implemented.');
}