com.lightstep.tracer.shared.CollectorClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
The LightStep OpenTracing Tracer implementation for Java
package com.lightstep.tracer.shared;
import com.lightstep.tracer.grpc.ReportRequest;
import com.lightstep.tracer.grpc.ReportResponse;
// Has to be an abstract class and not an interface becuase interfaces don't allow package private methods.
abstract class CollectorClient {
abstract void reconnect();
abstract void shutdown();
abstract ReportResponse report(ReportRequest request);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy