示例#1
0
 public Executor(IRobotAnalyzer _convAnalyzer, string _cmdContent, Iplugin _plugin)
 {
     this.analyzer   = _convAnalyzer;
     this.cmdContent = _cmdContent;
     this.plugin     = _plugin;
     asychExecute    = new asynchDelegate(plugin.Execute);
 }
示例#2
0
 public ConvExecutor(IRobotAnalyzer _convAnalyzer, string _cmdContent, Iplugin _plugin)
     : base(_convAnalyzer, _cmdContent, _plugin)
 {
 }
示例#3
0
 public InternalCmdExecutor(IRobotAnalyzer analyzer, InterCmd cmd)
 {
     this.analyzer = analyzer;
     this.cmd      = cmd;
 }