exec method

  1. @MPI(name: "mesh.vmc.exec")
Future<String?> exec(
  1. String code,
  2. Map<String, String> args,
  3. String dft, {
  4. Context? ctx,
})

Exec the script with name. 执行脚本,此处为规则引擎服务化执行接口.

Implementation

@MPI(name: "mesh.vmc.exec")
Future<String?> exec(String code, Map<String, String> args, String dft, {Context? ctx}) {
  throw UnimplementedError('exec() has not been implemented.');
}