Socket s = new Socket(args[0], Integer.parseInt(args[1]));
InputStream is = s.getInputStream();
InterruptibleClient c = new InterruptibleClient(is);
c.start();
System.out.println("Main thread sleeping");
Thread.sleep(10000);
System.out.println("Main thread woke up");
c.interrupt();
System.out.println("Main thread called interrupt");