// Code generated by protoc-gen-go. DO NOT EDIT. // source: smart_alarm.proto // package声明符,用来防止不同的消息类型有命名冲突 package pb import ( context "context" 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" v1 "smart-alarm/pb/v1" ) // 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{ // 114 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, 0x40, 0x14, 0x1f, 0xd8, 0x32, 0x5d, 0xb0, 0xc1, 0xfa, 0x05, 0x49, 0x49, 0x6c, 0x60, 0xc3, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x4f, 0x21, 0xbc, 0x85, 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", }