package jalview.ws2; public interface PollableTaskI { void start() throws Exception; boolean poll() throws Exception; boolean isDone(); void done(); }