Uses of Interface
org.htrace.Span

Packages that use Span
org.htrace   
org.htrace.impl   
org.htrace.wrappers   
 

Uses of Span in org.htrace
 

Methods in org.htrace that return Span
 Span Span.child(String description)
          Create a child span of this span with the given description
protected  Span Tracer.createNew(String description)
           
protected  Span Tracer.currentSpan()
           
static Span Trace.currentSpan()
          If we are tracing, return the current span, else null
 Span TraceScope.detach()
          Remove this span as the current thread, but don't stop it yet or send it for collection.
 Span TraceScope.getSpan()
           
protected  Span Tracer.setCurrentSpan(Span span)
           
 

Methods in org.htrace that return types with arguments of type Span
 Collection<Span> TraceTree.getRoots()
           
 Collection<Span> TraceTree.getSpans()
           
 com.google.common.collect.Multimap<Long,Span> TraceTree.getSpansByParentIdMap()
           
 com.google.common.collect.Multimap<String,Span> TraceTree.getSpansByPidMap()
           
 

Methods in org.htrace with parameters of type Span
 TraceScope Tracer.continueSpan(Span s)
           
static TraceScope Trace.continueSpan(Span s)
          Pick up an existing span from another thread.
 void Tracer.deliver(Span span)
           
static TraceInfo TraceInfo.fromSpan(Span s)
           
 void SpanReceiver.receiveSpan(Span span)
          Called when a Span is stopped and can now be stored.
protected  Span Tracer.setCurrentSpan(Span span)
           
static TraceScope Trace.startSpan(String description, Span parent)
          Starts and returns a new span as the child of the parameter 'parent'.
 

Constructor parameters in org.htrace with type arguments of type Span
TraceTree(Collection<Span> spans)
          Create a new TraceTree
 

Uses of Span in org.htrace.impl
 

Classes in org.htrace.impl that implement Span
 class MilliSpan
          A Span implementation that stores its information in milliseconds since the epoch.
 

Methods in org.htrace.impl that return Span
 Span MilliSpan.child(String description)
           
 

Methods in org.htrace.impl that return types with arguments of type Span
 Collection<Span> POJOSpanReceiver.getSpans()
           
 

Methods in org.htrace.impl with parameters of type Span
 void StandardOutSpanReceiver.receiveSpan(Span span)
           
 void POJOSpanReceiver.receiveSpan(Span span)
           
 void LocalFileSpanReceiver.receiveSpan(Span span)
           
 

Uses of Span in org.htrace.wrappers
 

Constructors in org.htrace.wrappers with parameters of type Span
TraceCallable(Span parent, Callable<V> impl)
           
TraceCallable(Span parent, Callable<V> impl, String description)
           
TraceRunnable(Span parent, Runnable runnable)
           
TraceRunnable(Span parent, Runnable runnable, String description)
           
 



Copyright © 2014. All Rights Reserved.