33 lines
868 B
Java
Raw Normal View History

2016-11-01 22:49:32 +01:00
package com.baeldung.mdc;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
2016-11-06 15:57:07 +01:00
import org.apache.log4j.Logger;
2016-11-01 22:49:32 +01:00
2016-11-06 15:57:07 +01:00
import com.baeldung.mdc.log4j.Log4JRunnable;
import com.baeldung.mdc.log4j2.Log4J2Runnable;
import com.baeldung.mdc.slf4j.Slf4jRunnable;
2016-11-01 22:49:32 +01:00
2016-11-07 22:44:09 +01:00
public class TransferDemo {
public static void main(String[] args) {
ExecutorService executor = Executors.newFixedThreadPool(3);
TransactionFactory transactionFactory = new TransactionFactory();
for (int i = 0; i < 10; i++) {
2016-11-07 22:44:09 +01:00
Transfer tx = transactionFactory.newInstance();
//Runnable task = new Log4JRunnable(tx);
//Runnable task = new Log4J2Runnable(tx);
Runnable task = new Slf4jRunnable(tx);
executor.submit(task);
}
executor.shutdown();
}
2016-11-01 22:49:32 +01:00
}