proto

package
v1.2.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2021 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterClientSrvServer

func RegisterClientSrvServer(s *grpc.Server, srv ClientSrvServer)

func RegisterDomainSrvServer

func RegisterDomainSrvServer(s *grpc.Server, srv DomainSrvServer)

func RegisterUserSrvServer

func RegisterUserSrvServer(s *grpc.Server, srv UserSrvServer)

Types

type ClientCond

type ClientCond struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ClientCond defined

func (*ClientCond) Descriptor

func (*ClientCond) Descriptor() ([]byte, []int)

func (*ClientCond) ProtoMessage

func (*ClientCond) ProtoMessage()

func (*ClientCond) Reset

func (m *ClientCond) Reset()

func (*ClientCond) String

func (m *ClientCond) String() string

func (*ClientCond) XXX_DiscardUnknown

func (m *ClientCond) XXX_DiscardUnknown()

func (*ClientCond) XXX_Marshal

func (m *ClientCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClientCond) XXX_Merge

func (m *ClientCond) XXX_Merge(src proto.Message)

func (*ClientCond) XXX_Size

func (m *ClientCond) XXX_Size() int

func (*ClientCond) XXX_Unmarshal

func (m *ClientCond) XXX_Unmarshal(b []byte) error

type ClientReply

type ClientReply struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ClientReply defined

func (*ClientReply) Descriptor

func (*ClientReply) Descriptor() ([]byte, []int)

func (*ClientReply) ProtoMessage

func (*ClientReply) ProtoMessage()

func (*ClientReply) Reset

func (m *ClientReply) Reset()

func (*ClientReply) String

func (m *ClientReply) String() string

func (*ClientReply) XXX_DiscardUnknown

func (m *ClientReply) XXX_DiscardUnknown()

func (*ClientReply) XXX_Marshal

func (m *ClientReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ClientReply) XXX_Merge

func (m *ClientReply) XXX_Merge(src proto.Message)

func (*ClientReply) XXX_Size

func (m *ClientReply) XXX_Size() int

func (*ClientReply) XXX_Unmarshal

func (m *ClientReply) XXX_Unmarshal(b []byte) error

type ClientSrvClient

type ClientSrvClient interface {
	List(ctx context.Context, in *ClientCond, opts ...grpc.CallOption) (*ClientReply, error)
}

ClientSrvClient is the client API for ClientSrv service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewClientSrvClient

func NewClientSrvClient(cc *grpc.ClientConn) ClientSrvClient

type ClientSrvServer

type ClientSrvServer interface {
	List(context.Context, *ClientCond) (*ClientReply, error)
}

ClientSrvServer is the server API for ClientSrv service.

type DomainCond

type DomainCond struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

DomainCond defined

func (*DomainCond) Descriptor

func (*DomainCond) Descriptor() ([]byte, []int)

func (*DomainCond) ProtoMessage

func (*DomainCond) ProtoMessage()

func (*DomainCond) Reset

func (m *DomainCond) Reset()

func (*DomainCond) String

func (m *DomainCond) String() string

func (*DomainCond) XXX_DiscardUnknown

func (m *DomainCond) XXX_DiscardUnknown()

func (*DomainCond) XXX_Marshal

func (m *DomainCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DomainCond) XXX_Merge

func (m *DomainCond) XXX_Merge(src proto.Message)

func (*DomainCond) XXX_Size

func (m *DomainCond) XXX_Size() int

func (*DomainCond) XXX_Unmarshal

func (m *DomainCond) XXX_Unmarshal(b []byte) error

type DomainReply

type DomainReply struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

DomainReply defined

func (*DomainReply) Descriptor

func (*DomainReply) Descriptor() ([]byte, []int)

func (*DomainReply) ProtoMessage

func (*DomainReply) ProtoMessage()

func (*DomainReply) Reset

func (m *DomainReply) Reset()

func (*DomainReply) String

func (m *DomainReply) String() string

func (*DomainReply) XXX_DiscardUnknown

func (m *DomainReply) XXX_DiscardUnknown()

func (*DomainReply) XXX_Marshal

func (m *DomainReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DomainReply) XXX_Merge

func (m *DomainReply) XXX_Merge(src proto.Message)

func (*DomainReply) XXX_Size

func (m *DomainReply) XXX_Size() int

func (*DomainReply) XXX_Unmarshal

func (m *DomainReply) XXX_Unmarshal(b []byte) error

type DomainSrvClient

type DomainSrvClient interface {
	List(ctx context.Context, in *DomainCond, opts ...grpc.CallOption) (*DomainReply, error)
}

DomainSrvClient is the client API for DomainSrv service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewDomainSrvClient

func NewDomainSrvClient(cc *grpc.ClientConn) DomainSrvClient

type DomainSrvServer

type DomainSrvServer interface {
	List(context.Context, *DomainCond) (*DomainReply, error)
}

DomainSrvServer is the server API for DomainSrv service.

type UnimplementedClientSrvServer

type UnimplementedClientSrvServer struct {
}

UnimplementedClientSrvServer can be embedded to have forward compatible implementations.

func (*UnimplementedClientSrvServer) List

type UnimplementedDomainSrvServer

type UnimplementedDomainSrvServer struct {
}

UnimplementedDomainSrvServer can be embedded to have forward compatible implementations.

func (*UnimplementedDomainSrvServer) List

type UnimplementedUserSrvServer

type UnimplementedUserSrvServer struct {
}

UnimplementedUserSrvServer can be embedded to have forward compatible implementations.

func (*UnimplementedUserSrvServer) List

type UserCond

type UserCond struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UserCond defined

func (*UserCond) Descriptor

func (*UserCond) Descriptor() ([]byte, []int)

func (*UserCond) ProtoMessage

func (*UserCond) ProtoMessage()

func (*UserCond) Reset

func (m *UserCond) Reset()

func (*UserCond) String

func (m *UserCond) String() string

func (*UserCond) XXX_DiscardUnknown

func (m *UserCond) XXX_DiscardUnknown()

func (*UserCond) XXX_Marshal

func (m *UserCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UserCond) XXX_Merge

func (m *UserCond) XXX_Merge(src proto.Message)

func (*UserCond) XXX_Size

func (m *UserCond) XXX_Size() int

func (*UserCond) XXX_Unmarshal

func (m *UserCond) XXX_Unmarshal(b []byte) error

type UserReply

type UserReply struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UserReply defined

func (*UserReply) Descriptor

func (*UserReply) Descriptor() ([]byte, []int)

func (*UserReply) ProtoMessage

func (*UserReply) ProtoMessage()

func (*UserReply) Reset

func (m *UserReply) Reset()

func (*UserReply) String

func (m *UserReply) String() string

func (*UserReply) XXX_DiscardUnknown

func (m *UserReply) XXX_DiscardUnknown()

func (*UserReply) XXX_Marshal

func (m *UserReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UserReply) XXX_Merge

func (m *UserReply) XXX_Merge(src proto.Message)

func (*UserReply) XXX_Size

func (m *UserReply) XXX_Size() int

func (*UserReply) XXX_Unmarshal

func (m *UserReply) XXX_Unmarshal(b []byte) error

type UserSrvClient

type UserSrvClient interface {
	List(ctx context.Context, in *UserCond, opts ...grpc.CallOption) (*UserReply, error)
}

UserSrvClient is the client API for UserSrv service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewUserSrvClient

func NewUserSrvClient(cc *grpc.ClientConn) UserSrvClient

type UserSrvServer

type UserSrvServer interface {
	List(context.Context, *UserCond) (*UserReply, error)
}

UserSrvServer is the server API for UserSrv service.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL