Пример #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;
 }