All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zeroturnaround.exec.MDCRunnableAdapter Maven / Gradle / Ivy

The newest version!
package org.zeroturnaround.exec;

import java.util.Map;

import org.slf4j.MDC;

/**
 * Restores the MDC context map for the target action.
 */
public class MDCRunnableAdapter implements Runnable {

  private final Runnable target;

  private final Map contextMap;

  public MDCRunnableAdapter(Runnable target, Map contextMap) {
    this.target = target;
    this.contextMap = contextMap;
  }

  public void run() {
    MDC.setContextMap(contextMap);
    try {
      target.run();
    }
    finally {
      MDC.clear();
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy