Documentation ¶
Overview ¶
Code generated by Kitex v0.9.1. DO NOT EDIT.
Index ¶
- func NewInvoker(handler push.PushService, opts ...server.Option) server.Invoker
- func NewServer(handler push.PushService, opts ...server.Option) server.Server
- func NewServiceInfo() *kitex.ServiceInfo
- func NewServiceInfoForClient() *kitex.ServiceInfo
- func NewServiceInfoForStreamClient() *kitex.ServiceInfo
- func RegisterService(svr server.Server, handler push.PushService, opts ...server.RegisterOption) error
- type Client
- type PushService_ReceiveMessageClient
- type StreamClient
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewInvoker ¶
NewInvoker creates a server.Invoker with the given handler and options.
func NewServiceInfo ¶
func NewServiceInfo() *kitex.ServiceInfo
NewServiceInfo creates a new ServiceInfo containing all methods
func NewServiceInfoForClient ¶
func NewServiceInfoForClient() *kitex.ServiceInfo
NewServiceInfo creates a new ServiceInfo containing non-streaming methods
func NewServiceInfoForStreamClient ¶
func NewServiceInfoForStreamClient() *kitex.ServiceInfo
func RegisterService ¶
func RegisterService(svr server.Server, handler push.PushService, opts ...server.RegisterOption) error
Types ¶
type Client ¶
type Client interface { PushMessage(ctx context.Context, req *push.PushMessageRequest, callOptions ...callopt.Option) (err error) StopMessage(ctx context.Context, req *push.StopMessageRequest, callOptions ...callopt.Option) (err error) InitLiveRoomReciver(ctx context.Context, req *push.InitLiveRoomReciverRequest, callOptions ...callopt.Option) (err error) }
Client is designed to provide IDL-compatible methods with call-option parameter for kitex framework.
func MustNewClient ¶
MustNewClient creates a client for the service defined in IDL. It panics if any error occurs.
type PushService_ReceiveMessageClient ¶
type PushService_ReceiveMessageClient interface { streaming.Stream Send(*push.ReceiveMessageRequest) error Recv() (*push.ReceiveMessageResponse, error) }
type StreamClient ¶
type StreamClient interface {
ReceiveMessage(ctx context.Context, callOptions ...streamcall.Option) (stream PushService_ReceiveMessageClient, err error)
}
StreamClient is designed to provide Interface for Streaming APIs.
func MustNewStreamClient ¶
func MustNewStreamClient(destService string, opts ...streamclient.Option) StreamClient
MustNewStreamClient creates a stream client for the service's streaming APIs defined in IDL. It panics if any error occurs.
func NewStreamClient ¶
func NewStreamClient(destService string, opts ...streamclient.Option) (StreamClient, error)
NewStreamClient creates a stream client for the service's streaming APIs defined in IDL.