package beacon;

public class PongThread extends Thread {
  BClient client;
  boolean running;

  PongThread(BClient bc){
    client = bc;
  }
  public void run() {
    while(true){
      client.connectionPong(2020);
      try { Thread.sleep(100000); } catch (Exception e) {}
    }
  }
}
