mufiye commented on issue #9999:
URL: https://github.com/apache/skywalking/issues/9999#issuecomment-1374772881

   ```java
   import org.apache.skywalking.apm.agent.core.context.ContextSnapshot;
   
   // the message is used to encapsulate the ContextCarrier
   public class Tracer {
       public static SpanRef createEntrySpan(String operationName, Object 
message) {
           return null;
       }
   
       public static SpanRef createLocalSpan(String operationName) {
           return null;
       }
   
       public static SpanRef createExitSpan(String operationName, String 
remotePeer) {
           return null;
       }
   
       public static SpanRef createExitSpan(String operationName, String 
remotePeer, Object message) {
           return null;
       }
   
       public static void stopSpan() {
       }
   
       public static void inject(Object message) {
       }
   
       public static void extract(Object message) {
       }
   
       public static ContextSnapshot capture() {
           return null;
       }
   
       public static void continued(ContextSnapshot snapshot) {
       }
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to