aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-logging-lib/openecomp-logging-api/src/main/java/org/openecomp/core/logging/api/context/ContextPropagationService.java
blob: 8e9c2dfa2843fbe8b991ae2263cbfebe39d43659 (plain)
1
2
3
4
5
6
7
8
9
10
package org.openecomp.core.logging.api.context;

/**
 * Should be used to implement a framework-specific mechanism of propagation of a diagnostic context
 * to child threads.
 */
public interface ContextPropagationService {

  Runnable create(Runnable task);
}