// package: skywalking.v3 // file: service-mesh-probe/service-mesh.proto /* tslint:disable */ /* eslint-disable */ import * as grpc from "@grpc/grpc-js"; import * as service_mesh_probe_service_mesh_pb from "../service-mesh-probe/service-mesh_pb"; import * as common_Common_pb from "../common/Common_pb"; interface IServiceMeshMetricServiceService extends grpc.ServiceDefinition { collect: IServiceMeshMetricServiceService_Icollect; } interface IServiceMeshMetricServiceService_Icollect extends grpc.MethodDefinition { path: "/skywalking.v3.ServiceMeshMetricService/collect"; requestStream: true; responseStream: false; requestSerialize: grpc.serialize; requestDeserialize: grpc.deserialize; responseSerialize: grpc.serialize; responseDeserialize: grpc.deserialize; } export const ServiceMeshMetricServiceService: IServiceMeshMetricServiceService; export interface IServiceMeshMetricServiceServer extends grpc.UntypedServiceImplementation { collect: grpc.handleClientStreamingCall; } export interface IServiceMeshMetricServiceClient { collect(callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; collect(metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; collect(options: Partial, callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; collect(metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; } export class ServiceMeshMetricServiceClient extends grpc.Client implements IServiceMeshMetricServiceClient { constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial); public collect(callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; public collect(metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; public collect(options: Partial, callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; public collect(metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: service_mesh_probe_service_mesh_pb.MeshProbeDownstream) => void): grpc.ClientWritableStream; }