8e9c2dfa2843fbe8b991ae2263cbfebe39d43659
[sdc.git] /
1 package org.openecomp.core.logging.api.context;
2
3 /**
4  * Should be used to implement a framework-specific mechanism of propagation of a diagnostic context
5  * to child threads.
6  */
7 public interface ContextPropagationService {
8
9   Runnable create(Runnable task);
10 }