invoke method

  1. @MPI(name: "mesh.cipher.invoke")
Future<Uint8List?> invoke(
  1. Script script, {
  2. Context? ctx,
})

Invoke the script in cipher objects. 在密态数据包上执行计算脚本,SQL等.

Implementation

@MPI(name: "mesh.cipher.invoke")
Future<Uint8List?> invoke(Script script, {Context? ctx}) {
  throw UnimplementedError('invoke() has not been implemented.');
}