// A separate runnable object. We create one of these and send
// back to the client on the pipe. It runs on the client.
public class MyRunnable implements Runnable, java.io.Serializable {
	public void run() {
		int i = 1;
		i = i + 1;
		System.out.println("This code sent from the server " + i);
	}
}

