List of usage examples for java.util.concurrent ScheduledThreadPoolExecutor subclass-usage
From source file org.apache.hadoop.util.concurrent.HadoopScheduledThreadPoolExecutor.java
/** An extension of ScheduledThreadPoolExecutor that provides additional * functionality. */ public class HadoopScheduledThreadPoolExecutor extends ScheduledThreadPoolExecutor { private static final Log LOG = LogFactory.getLog(HadoopScheduledThreadPoolExecutor.class);
From source file com.github.vatbub.tictactoe.view.AnimationThreadPoolExecutor.java
/** * A {@code ScheduledThreadPoolExecutor} for javaFX animations */ @SuppressWarnings({ "JavaDoc", "WeakerAccess" }) public class AnimationThreadPoolExecutor extends ScheduledThreadPoolExecutor { /**
From source file com.brienwheeler.lib.concurrent.ScheduledThreadPoolExecutor.java
/**
* Extension to the standard java.util.concurrent.ScheduledThreadPoolExecutor that enforces the best
* practice of always using a NamedThreadFactory to provide semantically useful thread names in thread pools.
*
* @author bwheeler
*/
From source file com.funambol.pushlistener.service.taskexecutor.ScheduledTaskExecutor.java
/**
* This is the executor of <code>TaskWrapper</code> and of
* <code>ScheduledTaskWrapper</code>.
*
* @version $Id: ScheduledTaskExecutor.java,v 1.14 2008-05-18 16:23:42 nichele Exp $
*/