Documentation ¶
Overview ¶
Code generated by Kitex v0.9.1. DO NOT EDIT.
Index ¶
- func NewInvoker(handler lottery.LotteryService, opts ...server.Option) server.Invoker
- func NewServer(handler lottery.LotteryService, opts ...server.Option) server.Server
- func NewServiceInfo() *kitex.ServiceInfo
- func NewServiceInfoForClient() *kitex.ServiceInfo
- func NewServiceInfoForStreamClient() *kitex.ServiceInfo
- func RegisterService(svr server.Server, handler lottery.LotteryService, ...) error
- type Client
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 lottery.LotteryService, opts ...server.RegisterOption) error
Types ¶
type Client ¶
type Client interface { SetLottery(ctx context.Context, req *lottery.SetLotteryRequest, callOptions ...callopt.Option) (r *lottery.SetLotteryResponse, err error) GetLottery(ctx context.Context, req *lottery.GetLotteryRequest, callOptions ...callopt.Option) (r *lottery.GetLotteryResponse, err error) JoinLottery(ctx context.Context, req *lottery.JoinLotteryRequest, callOptions ...callopt.Option) (r *lottery.JoinLotteryResponse, err error) GetLiveRoomLottery(ctx context.Context, req *lottery.GetLiveRoomLotteryRequest, callOptions ...callopt.Option) (r *lottery.GetLiveRoomLotteryResponse, err error) DrawLottery(ctx context.Context, req *lottery.DrawLotteryRequest, callOptions ...callopt.Option) (r *lottery.DrawLotteryResponse, err error) GetAllUnDrawLottery(ctx context.Context, callOptions ...callopt.Option) (r *lottery.GetAllUnDrawLotteryResponse, 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.
Click to show internal directories.
Click to hide internal directories.