Documentation ¶
Overview ¶
Code generated by Kitex v0.12.0. DO NOT EDIT.
Index ¶
- func NewInvoker(handler notedemo.NoteService, opts ...server.Option) server.Invoker
- func NewServer(handler notedemo.NoteService, opts ...server.Option) server.Server
- func NewServiceInfo() *kitex.ServiceInfo
- func NewServiceInfoForClient() *kitex.ServiceInfo
- func NewServiceInfoForStreamClient() *kitex.ServiceInfo
- func RegisterService(svr server.Server, handler notedemo.NoteService, opts ...server.RegisterOption) 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 notedemo.NoteService, opts ...server.RegisterOption) error
Types ¶
type Client ¶
type Client interface { CreateNote(ctx context.Context, req *notedemo.CreateNoteRequest, callOptions ...callopt.Option) (r *notedemo.CreateNoteResponse, err error) MGetNote(ctx context.Context, req *notedemo.MGetNoteRequest, callOptions ...callopt.Option) (r *notedemo.MGetNoteResponse, err error) DeleteNote(ctx context.Context, req *notedemo.DeleteNoteRequest, callOptions ...callopt.Option) (r *notedemo.DeleteNoteResponse, err error) QueryNote(ctx context.Context, req *notedemo.QueryNoteRequest, callOptions ...callopt.Option) (r *notedemo.QueryNoteResponse, err error) UpdateNote(ctx context.Context, req *notedemo.UpdateNoteRequest, callOptions ...callopt.Option) (r *notedemo.UpdateNoteResponse, 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.