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(); }