// package: skywalking.v3 // file: language-agent/CLRMetric.proto /* tslint:disable */ /* eslint-disable */ import * as grpc from "@grpc/grpc-js"; import * as language_agent_CLRMetric_pb from "../language-agent/CLRMetric_pb"; import * as common_Common_pb from "../common/Common_pb"; interface ICLRMetricReportServiceService extends grpc.ServiceDefinition { collect: ICLRMetricReportServiceService_Icollect; } interface ICLRMetricReportServiceService_Icollect extends grpc.MethodDefinition { path: "/skywalking.v3.CLRMetricReportService/collect"; requestStream: false; responseStream: false; requestSerialize: grpc.serialize; requestDeserialize: grpc.deserialize; responseSerialize: grpc.serialize; responseDeserialize: grpc.deserialize; } export const CLRMetricReportServiceService: ICLRMetricReportServiceService; export interface ICLRMetricReportServiceServer extends grpc.UntypedServiceImplementation { collect: grpc.handleUnaryCall; } export interface ICLRMetricReportServiceClient { collect(request: language_agent_CLRMetric_pb.CLRMetricCollection, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; collect(request: language_agent_CLRMetric_pb.CLRMetricCollection, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; collect(request: language_agent_CLRMetric_pb.CLRMetricCollection, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; } export class CLRMetricReportServiceClient extends grpc.Client implements ICLRMetricReportServiceClient { constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial); public collect(request: language_agent_CLRMetric_pb.CLRMetricCollection, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; public collect(request: language_agent_CLRMetric_pb.CLRMetricCollection, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; public collect(request: language_agent_CLRMetric_pb.CLRMetricCollection, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; }