view src/main/java/jp/ac/u_ryukyu/treevnc/RequestScreenThread.java @ 232:6ee4cdca104c

send value of port and localhost in checkdelay framebufferupdate, and get this.
author oc
date Fri, 10 Oct 2014 23:39:44 +0900
parents b31903e5b02d
children 42fcc9419498
line wrap: on
line source

package jp.ac.u_ryukyu.treevnc;

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 (Exception e) {
				e.printStackTrace();
				break;
			}
		}
	}
	

    /**
     * do nothing.
     */
    public synchronized void reStart() {
    	notify();
    }
    
}