You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
357 lines
13 KiB
357 lines
13 KiB
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: push/push.proto
|
|
|
|
package pbPush // import "Open_IM/pkg/proto/push"
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import sdkws "Open_IM/pkg/proto/sdkws"
|
|
|
|
import (
|
|
context "golang.org/x/net/context"
|
|
grpc "google.golang.org/grpc"
|
|
)
|
|
|
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
type PushMsgReq struct {
|
|
OperationID string `protobuf:"bytes,1,opt,name=operationID" json:"operationID,omitempty"`
|
|
MsgData *sdkws.MsgData `protobuf:"bytes,2,opt,name=msgData" json:"msgData,omitempty"`
|
|
PushToUserID string `protobuf:"bytes,3,opt,name=pushToUserID" json:"pushToUserID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PushMsgReq) Reset() { *m = PushMsgReq{} }
|
|
func (m *PushMsgReq) String() string { return proto.CompactTextString(m) }
|
|
func (*PushMsgReq) ProtoMessage() {}
|
|
func (*PushMsgReq) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_push_8ae9f818f30d0bbd, []int{0}
|
|
}
|
|
func (m *PushMsgReq) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PushMsgReq.Unmarshal(m, b)
|
|
}
|
|
func (m *PushMsgReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PushMsgReq.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *PushMsgReq) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PushMsgReq.Merge(dst, src)
|
|
}
|
|
func (m *PushMsgReq) XXX_Size() int {
|
|
return xxx_messageInfo_PushMsgReq.Size(m)
|
|
}
|
|
func (m *PushMsgReq) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PushMsgReq.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PushMsgReq proto.InternalMessageInfo
|
|
|
|
func (m *PushMsgReq) GetOperationID() string {
|
|
if m != nil {
|
|
return m.OperationID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PushMsgReq) GetMsgData() *sdkws.MsgData {
|
|
if m != nil {
|
|
return m.MsgData
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PushMsgReq) GetPushToUserID() string {
|
|
if m != nil {
|
|
return m.PushToUserID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type PushMsgResp struct {
|
|
ResultCode int32 `protobuf:"varint,1,opt,name=ResultCode" json:"ResultCode,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PushMsgResp) Reset() { *m = PushMsgResp{} }
|
|
func (m *PushMsgResp) String() string { return proto.CompactTextString(m) }
|
|
func (*PushMsgResp) ProtoMessage() {}
|
|
func (*PushMsgResp) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_push_8ae9f818f30d0bbd, []int{1}
|
|
}
|
|
func (m *PushMsgResp) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PushMsgResp.Unmarshal(m, b)
|
|
}
|
|
func (m *PushMsgResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PushMsgResp.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *PushMsgResp) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PushMsgResp.Merge(dst, src)
|
|
}
|
|
func (m *PushMsgResp) XXX_Size() int {
|
|
return xxx_messageInfo_PushMsgResp.Size(m)
|
|
}
|
|
func (m *PushMsgResp) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PushMsgResp.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PushMsgResp proto.InternalMessageInfo
|
|
|
|
func (m *PushMsgResp) GetResultCode() int32 {
|
|
if m != nil {
|
|
return m.ResultCode
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type DelUserPushTokenReq struct {
|
|
OperationID string `protobuf:"bytes,1,opt,name=operationID" json:"operationID,omitempty"`
|
|
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
|
|
PlatformID int32 `protobuf:"varint,3,opt,name=platformID" json:"platformID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DelUserPushTokenReq) Reset() { *m = DelUserPushTokenReq{} }
|
|
func (m *DelUserPushTokenReq) String() string { return proto.CompactTextString(m) }
|
|
func (*DelUserPushTokenReq) ProtoMessage() {}
|
|
func (*DelUserPushTokenReq) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_push_8ae9f818f30d0bbd, []int{2}
|
|
}
|
|
func (m *DelUserPushTokenReq) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DelUserPushTokenReq.Unmarshal(m, b)
|
|
}
|
|
func (m *DelUserPushTokenReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DelUserPushTokenReq.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *DelUserPushTokenReq) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DelUserPushTokenReq.Merge(dst, src)
|
|
}
|
|
func (m *DelUserPushTokenReq) XXX_Size() int {
|
|
return xxx_messageInfo_DelUserPushTokenReq.Size(m)
|
|
}
|
|
func (m *DelUserPushTokenReq) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DelUserPushTokenReq.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DelUserPushTokenReq proto.InternalMessageInfo
|
|
|
|
func (m *DelUserPushTokenReq) GetOperationID() string {
|
|
if m != nil {
|
|
return m.OperationID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DelUserPushTokenReq) GetUserID() string {
|
|
if m != nil {
|
|
return m.UserID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DelUserPushTokenReq) GetPlatformID() int32 {
|
|
if m != nil {
|
|
return m.PlatformID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type DelUserPushTokenResp struct {
|
|
ErrCode int32 `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
|
|
ErrMsg string `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DelUserPushTokenResp) Reset() { *m = DelUserPushTokenResp{} }
|
|
func (m *DelUserPushTokenResp) String() string { return proto.CompactTextString(m) }
|
|
func (*DelUserPushTokenResp) ProtoMessage() {}
|
|
func (*DelUserPushTokenResp) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_push_8ae9f818f30d0bbd, []int{3}
|
|
}
|
|
func (m *DelUserPushTokenResp) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DelUserPushTokenResp.Unmarshal(m, b)
|
|
}
|
|
func (m *DelUserPushTokenResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DelUserPushTokenResp.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *DelUserPushTokenResp) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DelUserPushTokenResp.Merge(dst, src)
|
|
}
|
|
func (m *DelUserPushTokenResp) XXX_Size() int {
|
|
return xxx_messageInfo_DelUserPushTokenResp.Size(m)
|
|
}
|
|
func (m *DelUserPushTokenResp) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DelUserPushTokenResp.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DelUserPushTokenResp proto.InternalMessageInfo
|
|
|
|
func (m *DelUserPushTokenResp) GetErrCode() int32 {
|
|
if m != nil {
|
|
return m.ErrCode
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DelUserPushTokenResp) GetErrMsg() string {
|
|
if m != nil {
|
|
return m.ErrMsg
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*PushMsgReq)(nil), "push.PushMsgReq")
|
|
proto.RegisterType((*PushMsgResp)(nil), "push.PushMsgResp")
|
|
proto.RegisterType((*DelUserPushTokenReq)(nil), "push.DelUserPushTokenReq")
|
|
proto.RegisterType((*DelUserPushTokenResp)(nil), "push.DelUserPushTokenResp")
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// 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.SupportPackageIsVersion4
|
|
|
|
// Client API for PushMsgService service
|
|
|
|
type PushMsgServiceClient interface {
|
|
PushMsg(ctx context.Context, in *PushMsgReq, opts ...grpc.CallOption) (*PushMsgResp, error)
|
|
DelUserPushToken(ctx context.Context, in *DelUserPushTokenReq, opts ...grpc.CallOption) (*DelUserPushTokenResp, error)
|
|
}
|
|
|
|
type pushMsgServiceClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewPushMsgServiceClient(cc *grpc.ClientConn) PushMsgServiceClient {
|
|
return &pushMsgServiceClient{cc}
|
|
}
|
|
|
|
func (c *pushMsgServiceClient) PushMsg(ctx context.Context, in *PushMsgReq, opts ...grpc.CallOption) (*PushMsgResp, error) {
|
|
out := new(PushMsgResp)
|
|
err := grpc.Invoke(ctx, "/push.PushMsgService/PushMsg", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *pushMsgServiceClient) DelUserPushToken(ctx context.Context, in *DelUserPushTokenReq, opts ...grpc.CallOption) (*DelUserPushTokenResp, error) {
|
|
out := new(DelUserPushTokenResp)
|
|
err := grpc.Invoke(ctx, "/push.PushMsgService/DelUserPushToken", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for PushMsgService service
|
|
|
|
type PushMsgServiceServer interface {
|
|
PushMsg(context.Context, *PushMsgReq) (*PushMsgResp, error)
|
|
DelUserPushToken(context.Context, *DelUserPushTokenReq) (*DelUserPushTokenResp, error)
|
|
}
|
|
|
|
func RegisterPushMsgServiceServer(s *grpc.Server, srv PushMsgServiceServer) {
|
|
s.RegisterService(&_PushMsgService_serviceDesc, srv)
|
|
}
|
|
|
|
func _PushMsgService_PushMsg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PushMsgReq)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PushMsgServiceServer).PushMsg(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/push.PushMsgService/PushMsg",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PushMsgServiceServer).PushMsg(ctx, req.(*PushMsgReq))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _PushMsgService_DelUserPushToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DelUserPushTokenReq)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PushMsgServiceServer).DelUserPushToken(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/push.PushMsgService/DelUserPushToken",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PushMsgServiceServer).DelUserPushToken(ctx, req.(*DelUserPushTokenReq))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _PushMsgService_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "push.PushMsgService",
|
|
HandlerType: (*PushMsgServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "PushMsg",
|
|
Handler: _PushMsgService_PushMsg_Handler,
|
|
},
|
|
{
|
|
MethodName: "DelUserPushToken",
|
|
Handler: _PushMsgService_DelUserPushToken_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "push/push.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("push/push.proto", fileDescriptor_push_8ae9f818f30d0bbd) }
|
|
|
|
var fileDescriptor_push_8ae9f818f30d0bbd = []byte{
|
|
// 332 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x41, 0x4f, 0xbb, 0x40,
|
|
0x10, 0xc5, 0x43, 0xff, 0xff, 0xb6, 0x71, 0x6a, 0x6a, 0x5d, 0x8d, 0x41, 0x12, 0xb5, 0xe1, 0x62,
|
|
0x2f, 0x85, 0xa4, 0x1e, 0xbd, 0x29, 0x07, 0x39, 0x10, 0x9b, 0x55, 0x2f, 0x5e, 0x0c, 0xb5, 0x23,
|
|
0x6d, 0xda, 0xb2, 0xeb, 0x0e, 0xd8, 0x8b, 0xdf, 0xc0, 0x2f, 0x6d, 0x76, 0x01, 0xc5, 0xaa, 0x89,
|
|
0x17, 0xc2, 0xfc, 0xe6, 0x31, 0xef, 0xb1, 0xb3, 0xb0, 0x23, 0x73, 0x9a, 0xf9, 0xfa, 0xe1, 0x49,
|
|
0x25, 0x32, 0xc1, 0xfe, 0xeb, 0x77, 0xe7, 0xf4, 0x5a, 0x62, 0x3a, 0x0c, 0xa3, 0xe1, 0x0d, 0xaa,
|
|
0x17, 0x54, 0xbe, 0x5c, 0x24, 0xbe, 0xe9, 0xfb, 0x34, 0x5d, 0xac, 0xc9, 0x5f, 0x53, 0x21, 0x77,
|
|
0x5f, 0x01, 0xc6, 0x39, 0xcd, 0x22, 0x4a, 0x38, 0x3e, 0xb3, 0x3e, 0x74, 0x84, 0x44, 0x15, 0x67,
|
|
0x73, 0x91, 0x86, 0x81, 0x6d, 0xf5, 0xad, 0xc1, 0x16, 0xaf, 0x23, 0x36, 0x80, 0xf6, 0x8a, 0x92,
|
|
0x20, 0xce, 0x62, 0xbb, 0xd1, 0xb7, 0x06, 0x9d, 0x51, 0xd7, 0x33, 0x13, 0xbd, 0xa8, 0xa0, 0xbc,
|
|
0x6a, 0x33, 0x17, 0xb6, 0x75, 0x94, 0x5b, 0x71, 0x47, 0xa8, 0xc2, 0xc0, 0xfe, 0x67, 0x86, 0x7d,
|
|
0x61, 0xee, 0x10, 0x3a, 0x1f, 0xee, 0x24, 0xd9, 0x31, 0x00, 0x47, 0xca, 0x97, 0xd9, 0xa5, 0x98,
|
|
0xa2, 0x71, 0x6f, 0xf2, 0x1a, 0x71, 0x05, 0xec, 0x05, 0xb8, 0xd4, 0xdf, 0x8e, 0xcd, 0x94, 0x05,
|
|
0xa6, 0x7f, 0x4b, 0x7d, 0x00, 0xad, 0xbc, 0x48, 0xd1, 0x30, 0xcd, 0xb2, 0xd2, 0x86, 0x72, 0x19,
|
|
0x67, 0x4f, 0x42, 0xad, 0xca, 0x84, 0x4d, 0x5e, 0x23, 0xee, 0x15, 0xec, 0x7f, 0x37, 0x24, 0xc9,
|
|
0x6c, 0x68, 0xa3, 0x52, 0xb5, 0x94, 0x55, 0xa9, 0x9d, 0x50, 0xa9, 0x88, 0x92, 0xca, 0xa9, 0xa8,
|
|
0x46, 0x6f, 0x16, 0x74, 0xcb, 0x5f, 0xd5, 0x2b, 0x99, 0x3f, 0x22, 0xf3, 0xa0, 0x5d, 0x12, 0xd6,
|
|
0xf3, 0xcc, 0x06, 0x3f, 0x37, 0xe1, 0xec, 0x6e, 0x10, 0x92, 0x2c, 0x84, 0xde, 0x66, 0x18, 0x76,
|
|
0x58, 0xc8, 0x7e, 0x38, 0x15, 0xc7, 0xf9, 0xad, 0x45, 0xf2, 0xe2, 0xe4, 0xfe, 0x48, 0x5f, 0x90,
|
|
0x87, 0x30, 0xaa, 0xdd, 0x0c, 0x2d, 0x3f, 0x97, 0x13, 0xad, 0x9c, 0xb4, 0x0c, 0x3a, 0x7b, 0x0f,
|
|
0x00, 0x00, 0xff, 0xff, 0xa4, 0xf0, 0x23, 0xf1, 0x5f, 0x02, 0x00, 0x00,
|
|
}
|