public static void V_VNA(NetwRunnable nr, ExecHm rc, Bys m, out string name, out IDictionary<string, Object> args) { var res = new Dict(m.V<Dictionary<string, object>>()); name = res.Val("name", ""); var obj = res["args"]; args = res["args"] as IDictionary<string,object>; }
public RCRunner_m(string name, EvnListener evn = null) : base(name) { this.HM = new ExecHm(); this.evnq = new QueueEvnH(); this.evnq.HS.Add(this); if (evn != null) { this.evnq.HS.Add(evn); this.evnh = evn; } }
public void addH(string name, ExecHm.RC_HH h) { this.HM.addH(name, h); }
public void addF(string name, ExecHm.RC_FH f) { this.HM.addF(name, f); }