Examples of OrderedExecutorFactory


Examples of org.hornetq.utils.OrderedExecutorFactory

      this.scheduledThreadPool = scheduledThreadPool;

      this.threadPool = threadPool;

      orderedExecutorFactory = new OrderedExecutorFactory(threadPool);

      closeExecutor = orderedExecutorFactory.getExecutor();

      this.interceptors = interceptors;
View Full Code Here

Examples of org.jboss.messaging.util.OrderedExecutorFactory

      super(name);
   }

   public void testExecutionOrder()
   {
      OrderedExecutorFactory factory = new OrderedExecutorFactory(Executors.newCachedThreadPool(new JBMThreadFactory("test-thread-factory")));
      CompatibleExecutor executor = factory.getExecutor("test executor");

      final int numTasks = 200000;

      CounterRunnable[] tasks = new CounterRunnable[numTasks];
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.