Esempio n. 1
0
 public ReplCommandItem(IOpohoCommandData data, IOpohoReplCommand cmdInstance)
 {
     Name = data.Name;
     ShortName = data.ShortName;
     Description = data.Description;
     Instance = cmdInstance;
 }
Esempio n. 2
0
 public void PostRepl(IOpohoReplCommand replCommand)
 {
     if (replCommand == null)
     {
         _log.Warning("PostRepl: Tried to post null command");
         return;
     }
     _replCmdQueue.Enqueue(replCommand);
 }