List of usage examples for java.util.concurrent ThreadFactory interface-usage
From source file org.helios.netty.jmx.ThreadPoolFactory.java
/**
* <p>Title: ThreadPoolFactory</p>
* <p>Description: JMX instrumented thread pool executor factory</p>
* <p>Company: Helios Development Group LLC</p>
* @author Whitehead (nwhitehead AT heliosdev DOT org)
* <p><code>org.helios.netty.jmx.ThreadPoolFactory</code></p>
From source file com.jkoolcloud.tnt4j.utils.TimeService.java
class TimeServiceThreadFactory implements ThreadFactory { int count = 0; String prefix; TimeServiceThreadFactory(String pfix) { prefix = pfix;
From source file com.jaeksoft.searchlib.config.Config.java
public abstract class Config implements ThreadFactory { private final VersionFile versionFile; private final IndexAbstract index;
From source file com.all.download.manager.ScheduledExecutorServiceSingleton.java
class DownloaderThreadFactory implements ThreadFactory { AtomicInteger threadNumber = new AtomicInteger(-1); @Override public Thread newThread(Runnable runnable) { StringBuilder sb = new StringBuilder();
From source file com.brsanthu.googleanalytics.GoogleAnalytics.java
class GoogleAnalyticsThreadFactory implements ThreadFactory { private final AtomicInteger threadNumber = new AtomicInteger(1); private String threadNameFormat = null; public GoogleAnalyticsThreadFactory(String threadNameFormat) { this.threadNameFormat = threadNameFormat;
From source file com.mode.googleanalytics.GoogleAnalytics.java
class GoogleAnalyticsThreadFactory implements ThreadFactory { private final AtomicInteger threadNumber = new AtomicInteger(1); private String threadNameFormat = null; public GoogleAnalyticsThreadFactory(String threadNameFormat) { this.threadNameFormat = threadNameFormat;
From source file water.ga.GoogleAnalytics.java
class GoogleAnalyticsThreadFactory implements ThreadFactory { private final AtomicInteger threadNumber = new AtomicInteger(1); private String threadNameFormat = null; public GoogleAnalyticsThreadFactory(String threadNameFormat) { this.threadNameFormat = threadNameFormat;