/** wait for the thread to finish */ public void join() throws InterruptedException { sucker.join(); }
public void start() { sucker = new Thread(this); sucker.start(); }