Brunet.EdgeTester.ClientLoop C# (CSharp) Method

ClientLoop() public static method

public static ClientLoop ( bool success, Edge e, Exception ex ) : void
success bool
e Edge
ex System.Exception
return void
    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();
    }