org.apache.activemq.artemis.utils.ActiveMQThreadFactory

Here are the examples of the java api class org.apache.activemq.artemis.utils.ActiveMQThreadFactory taken from open source projects.

1. ReplicationTest#setUp()

Project: activemq-artemis
File: ReplicationTest.java
@Override
@Before
public void setUp() throws Exception {
    super.setUp();
    tFactory = new ActiveMQThreadFactory("ActiveMQ-ReplicationTest", false, this.getClass().getClassLoader());
    executor = Executors.newCachedThreadPool(tFactory);
    scheduledExecutor = new ScheduledThreadPoolExecutor(10, tFactory);
    factory = new OrderedExecutorFactory(executor);
}