Mercurial > hg > Applications > TreeVNC
view src/main/java/jp/ac/u_ryukyu/treevnc/RequestScreenThread.java @ 331:42fcc9419498
add error message, add lostParent case by fail to connectTo.
author | oc |
---|---|
date | Tue, 03 Feb 2015 12:31:48 +0900 |
parents | b31903e5b02d |
children |
line wrap: on
line source
package jp.ac.u_ryukyu.treevnc; import com.glavsoft.exceptions.TransportException; import com.glavsoft.rfb.protocol.Protocol; public class RequestScreenThread implements Runnable { public TreeRFBProto rfb; Protocol protocol; public RequestScreenThread(TreeRFBProto _rfb) { rfb = _rfb; } /* (non-Javadoc) * @see java.lang.Runnable#run() * * request full screen update every 3 second. * restart send this immediately. * nobody call this. * */ public void run() { while (true) { try { synchronized(this) { wait(); } Thread.sleep(3000); rfb.writeFramebufferUpdateRequest(0, 0, protocol.getFbWidth(), protocol.getFbHeight(), false); } catch (InterruptedException e) { e.printStackTrace(); System.out.println("any thread has interrupted the current thread"); break; } } } /** * do nothing. */ public synchronized void reStart() { notify(); } }