Ejemplo n.º 1
0
        // Actions performed by GUI

        public static void RemoteStartZLeaf(object sender, EventArgs e)
        {
            foreach (ConnectionTable.ClientInformation clientInformation in _connectionTable.GetChecked())
            {
                TraceOps.Out(clientInformation.GetName());
                var p = new string[, ] {
                    { }, { }
                };
                var m = new PaceCommon.Message(p, true, "start_zleaf", clientInformation.GetName());
                _messageQueue.SetMessage(m);
            }
        }
Ejemplo n.º 2
0
 // Actions performed by GUI
 public static void RemoteStartZLeaf(object sender, EventArgs e)
 {
     foreach (ConnectionTable.ClientInformation clientInformation in _connectionTable.GetChecked())
     {
         TraceOps.Out(clientInformation.GetName());
         var p = new string[,] { { }, { } };
         var m = new PaceCommon.Message(p, true, "start_zleaf", clientInformation.GetName());
         _messageQueue.SetMessage(m);
     }
 }