Exemplo n.º 1
0
        public void PrintQueueInfo(string param, Shell shell, BaseService servcie)
        {
            var lines = CommunicateFactory.RunQueueDic.Values.Select(queue => queue.Config.ToString()).ToList();

            shell.ConsolePrintLines(lines);
        }
Exemplo n.º 2
0
        public void PrintIO(string param, Shell shell, BaseService servcie)
        {
            var lines = ZabbixDic.Select(pair => string.Format("{0},{1}", pair.Key, pair.Value)).ToList();

            shell.ConsolePrintLines(lines);
        }