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