[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / common / openecomp-logging-lib / openecomp-logging-api / src / main / java / org / openecomp / core / logging / api / context / ContextPropagationService.java
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 }