Package net.spy.memcached.internal

Examples of net.spy.memcached.internal.BasicThreadFactory


  private final ThreadPoolExecutor pool;

  public TranscodeService(boolean daemon) {
    pool = new ThreadPoolExecutor(1, 10, 60L, TimeUnit.MILLISECONDS,
        new ArrayBlockingQueue<Runnable>(100), new BasicThreadFactory(
          "transcoder", daemon), new ThreadPoolExecutor.DiscardPolicy());
  }
View Full Code Here


  private final ThreadPoolExecutor pool;

  public TranscodeService(boolean daemon) {
    pool = new ThreadPoolExecutor(1, 10, 60L,
      TimeUnit.MILLISECONDS, new ArrayBlockingQueue<Runnable>(100),
      new BasicThreadFactory("transcoder", daemon),
      new ThreadPoolExecutor.DiscardPolicy());
  }
View Full Code Here

TOP

Related Classes of net.spy.memcached.internal.BasicThreadFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.