Documentation ¶
Index ¶
- func Connect(host, address string)
- func RegisterVMSServer(s *grpc.Server, srv VMSServer)
- type Reply
- func (*Reply) Descriptor() ([]byte, []int)
- func (m *Reply) GetCallId() string
- func (m *Reply) GetCode() string
- func (m *Reply) GetMessage() string
- func (m *Reply) GetRequestId() string
- func (*Reply) ProtoMessage()
- func (m *Reply) Reset()
- func (m *Reply) String() string
- func (m *Reply) XXX_DiscardUnknown()
- func (m *Reply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Reply) XXX_Merge(src proto.Message)
- func (m *Reply) XXX_Size() int
- func (m *Reply) XXX_Unmarshal(b []byte) error
- type Request
- func (*Request) Descriptor() ([]byte, []int)
- func (m *Request) GetCalledNumber() string
- func (m *Request) GetTtsCode() string
- func (m *Request) GetTtsParam() string
- func (*Request) ProtoMessage()
- func (m *Request) Reset()
- func (m *Request) String() string
- func (m *Request) XXX_DiscardUnknown()
- func (m *Request) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Request) XXX_Merge(src proto.Message)
- func (m *Request) XXX_Size() int
- func (m *Request) XXX_Unmarshal(b []byte) error
- type VMSClient
- type VMSServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterVMSServer ¶
Types ¶
type Reply ¶
type Reply struct { Code string `protobuf:"bytes,1,opt,name=Code,proto3" json:"Code,omitempty"` Message string `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"` RequestId string `protobuf:"bytes,3,opt,name=RequestId,proto3" json:"RequestId,omitempty"` CallId string `protobuf:"bytes,4,opt,name=CallId,proto3" json:"CallId,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Reply) Descriptor ¶
func (*Reply) GetMessage ¶
func (*Reply) GetRequestId ¶
func (*Reply) ProtoMessage ¶
func (*Reply) ProtoMessage()
func (*Reply) XXX_DiscardUnknown ¶
func (m *Reply) XXX_DiscardUnknown()
func (*Reply) XXX_Marshal ¶
func (*Reply) XXX_Unmarshal ¶
type Request ¶
type Request struct { CalledNumber string `protobuf:"bytes,1,opt,name=CalledNumber,proto3" json:"CalledNumber,omitempty"` TtsCode string `protobuf:"bytes,2,opt,name=TtsCode,proto3" json:"TtsCode,omitempty"` TtsParam string `protobuf:"bytes,3,opt,name=TtsParam,proto3" json:"TtsParam,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Request) Descriptor ¶
func (*Request) GetCalledNumber ¶
func (*Request) GetTtsCode ¶
func (*Request) GetTtsParam ¶
func (*Request) ProtoMessage ¶
func (*Request) ProtoMessage()
func (*Request) XXX_DiscardUnknown ¶
func (m *Request) XXX_DiscardUnknown()
func (*Request) XXX_Marshal ¶
func (*Request) XXX_Unmarshal ¶
type VMSClient ¶
type VMSClient interface {
Call(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Reply, error)
}
VMSClient is the client API for VMS service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewVMSClient ¶
func NewVMSClient(cc *grpc.ClientConn) VMSClient
Click to show internal directories.
Click to hide internal directories.