123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: smart_alarm.proto
- // package声明符,用来防止不同的消息类型有命名冲突
- package pb
- import (
- context "context"
- v1 "dust-monitor/pb/v1"
- fmt "fmt"
- proto "github.com/golang/protobuf/proto"
- grpc "google.golang.org/grpc"
- codes "google.golang.org/grpc/codes"
- status "google.golang.org/grpc/status"
- math "math"
- )
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the proto package it is being compiled against.
- // A compilation error at this line likely means your copy of the
- // proto package needs to be updated.
- const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
- func init() {
- proto.RegisterFile("smart_alarm.proto", fileDescriptor_893604fd7e902205)
- }
- var fileDescriptor_893604fd7e902205 = []byte{
- // 121 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2c, 0xce, 0x4d, 0x2c,
- 0x2a, 0x89, 0x4f, 0xcc, 0x49, 0x2c, 0xca, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x2a,
- 0x48, 0x92, 0xe2, 0x2b, 0x33, 0xd4, 0x47, 0x12, 0x33, 0x72, 0xe2, 0xe2, 0x0a, 0x06, 0x29, 0x74,
- 0x04, 0x89, 0x09, 0x99, 0x70, 0x71, 0x80, 0x19, 0x8e, 0x29, 0x29, 0x42, 0xc2, 0x7a, 0x65, 0x86,
- 0x7a, 0x30, 0x5e, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x94, 0x20, 0xaa, 0x60, 0x41, 0x4e,
- 0xa5, 0x12, 0x83, 0x93, 0x60, 0x14, 0x7f, 0x4a, 0x69, 0x71, 0x89, 0x6e, 0x6e, 0x7e, 0x5e, 0x66,
- 0x49, 0x7e, 0x91, 0x7e, 0x41, 0x52, 0x12, 0x1b, 0xd8, 0x74, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff,
- 0xff, 0x73, 0xc2, 0x5d, 0x0b, 0x86, 0x00, 0x00, 0x00,
- }
- // Reference imports to suppress errors if they are not otherwise used.
- var _ context.Context
- var _ grpc.ClientConnInterface
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the grpc package it is being compiled against.
- const _ = grpc.SupportPackageIsVersion6
- // SmartAlarmClient is the client API for SmartAlarm service.
- //
- // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
- type SmartAlarmClient interface {
- // 新增告警
- AlarmAdd(ctx context.Context, in *v1.AlarmAddRequest, opts ...grpc.CallOption) (*v1.AlarmAddReply, error)
- }
- type smartAlarmClient struct {
- cc grpc.ClientConnInterface
- }
- func NewSmartAlarmClient(cc grpc.ClientConnInterface) SmartAlarmClient {
- return &smartAlarmClient{cc}
- }
- func (c *smartAlarmClient) AlarmAdd(ctx context.Context, in *v1.AlarmAddRequest, opts ...grpc.CallOption) (*v1.AlarmAddReply, error) {
- out := new(v1.AlarmAddReply)
- err := c.cc.Invoke(ctx, "/pb.SmartAlarm/AlarmAdd", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // SmartAlarmServer is the server API for SmartAlarm service.
- type SmartAlarmServer interface {
- // 新增告警
- AlarmAdd(context.Context, *v1.AlarmAddRequest) (*v1.AlarmAddReply, error)
- }
- // UnimplementedSmartAlarmServer can be embedded to have forward compatible implementations.
- type UnimplementedSmartAlarmServer struct {
- }
- func (*UnimplementedSmartAlarmServer) AlarmAdd(ctx context.Context, req *v1.AlarmAddRequest) (*v1.AlarmAddReply, error) {
- return nil, status.Errorf(codes.Unimplemented, "method AlarmAdd not implemented")
- }
- func RegisterSmartAlarmServer(s *grpc.Server, srv SmartAlarmServer) {
- s.RegisterService(&_SmartAlarm_serviceDesc, srv)
- }
- func _SmartAlarm_AlarmAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(v1.AlarmAddRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(SmartAlarmServer).AlarmAdd(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/pb.SmartAlarm/AlarmAdd",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(SmartAlarmServer).AlarmAdd(ctx, req.(*v1.AlarmAddRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- var _SmartAlarm_serviceDesc = grpc.ServiceDesc{
- ServiceName: "pb.SmartAlarm",
- HandlerType: (*SmartAlarmServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "AlarmAdd",
- Handler: _SmartAlarm_AlarmAdd_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "smart_alarm.proto",
- }
|