// package: skywalking.v3 // file: event/Event.proto /* tslint:disable */ /* eslint-disable */ import * as grpc from "@grpc/grpc-js"; import * as event_Event_pb from "../event/Event_pb"; import * as common_Common_pb from "../common/Common_pb"; interface IEventServiceService extends grpc.ServiceDefinition { collect: IEventServiceService_Icollect; } interface IEventServiceService_Icollect extends grpc.MethodDefinition { path: "/skywalking.v3.EventService/collect"; requestStream: true; responseStream: false; requestSerialize: grpc.serialize; requestDeserialize: grpc.deserialize; responseSerialize: grpc.serialize; responseDeserialize: grpc.deserialize; } export const EventServiceService: IEventServiceService; export interface IEventServiceServer extends grpc.UntypedServiceImplementation { collect: grpc.handleClientStreamingCall; } export interface IEventServiceClient { collect(callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; collect(metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; collect(options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; collect(metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; } export class EventServiceClient extends grpc.Client implements IEventServiceClient { constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial); public collect(callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; public collect(metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; public collect(options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; public collect(metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientWritableStream; }