All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightstep.tracer.shared.CollectorClient Maven / Gradle / Ivy

There is a newer version: 0.32.0
Show newest version
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