/* * Task.java */ package org.ngbw.utils; /** * * @author Paul Hoover * */ interface Task extends Runnable { void runInChildProcess(); }