diff options
| author | Bogdan Drutu <bdrutu@google.com> | 2017-04-14 09:55:43 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-14 09:55:43 -0700 |
| commit | 5448a85875dd7974926f5ca6f513ee59fd7a341f (patch) | |
| tree | c72ec691972a49898c6678c6ab18c54535cbf4d0 /benchmarks | |
| parent | aa4f96b964a675728dab513a10dd422b57ae01f9 (diff) | |
| download | platform_external_opencensus-java-5448a85875dd7974926f5ca6f513ee59fd7a341f.tar.gz platform_external_opencensus-java-5448a85875dd7974926f5ca6f513ee59fd7a341f.tar.bz2 platform_external_opencensus-java-5448a85875dd7974926f5ca6f513ee59fd7a341f.zip | |
Add a new class Trace which holds the global state for the trace implementation. (#201)
* Add a new class Tracing which holds the global state for the trace component.
* Update names of the classes and comments. TraceService -> TraceComponent and Trace -> Tracing.
* Make all methods in TraceComponent abstract to allow dependency injection.
Diffstat (limited to 'benchmarks')
| -rw-r--r-- | benchmarks/src/jmh/java/com/google/instrumentation/trace/BinaryPropagationHandlerImplBenchmark.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/src/jmh/java/com/google/instrumentation/trace/BinaryPropagationHandlerImplBenchmark.java b/benchmarks/src/jmh/java/com/google/instrumentation/trace/BinaryPropagationHandlerImplBenchmark.java index 32e7a154..663db866 100644 --- a/benchmarks/src/jmh/java/com/google/instrumentation/trace/BinaryPropagationHandlerImplBenchmark.java +++ b/benchmarks/src/jmh/java/com/google/instrumentation/trace/BinaryPropagationHandlerImplBenchmark.java @@ -22,7 +22,7 @@ import org.openjdk.jmh.annotations.OutputTimeUnit; import org.openjdk.jmh.annotations.Scope; import org.openjdk.jmh.annotations.State; -/** Benchmarks for {@link BinaryPropagationHandler}. */ +/** Benchmarks for {@link BinaryPropagationHandlerImpl}. */ @State(Scope.Benchmark) public class BinaryPropagationHandlerImplBenchmark { private static final byte[] traceIdBytes = |
