Inheritance: IDataHandler
Example #1
0
        public static void ClientLoop(bool success, Edge e, Exception ex)
        {
            e.CloseEvent += HandleClose;
            ETClient printer = new ETClient(e);
            Thread   t       = new Thread(printer.Run);

            _threads.Add(t);
            t.Start();
        }
Example #2
0
 public static void ClientLoop(bool success, Edge e, Exception ex)
 {
   e.CloseEvent += HandleClose;
   ETClient printer = new ETClient(e);
   Thread t = new Thread(printer.Run);
   _threads.Add(t);
   t.Start();
 }