Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Endpoint ¶
Endpoint registers a request handler on a gateway
func NewEndpoint ¶
func NewEndpoint(deps *module.Dependencies) Endpoint
NewEndpoint returns a collection of endpoints that can be registered on a gateway
type EndpointHandlers ¶
type EndpointHandlers struct {
SimpleServiceEchoStringHandler *SimpleServiceEchoStringHandler
}
EndpointHandlers is a collection of individual endpoint handlers
type SimpleServiceEchoStringHandler ¶
type SimpleServiceEchoStringHandler struct { Deps *module.Dependencies // contains filtered or unexported fields }
SimpleServiceEchoStringHandler is the handler for "SimpleService::EchoString".
func NewSimpleServiceEchoStringHandler ¶
func NewSimpleServiceEchoStringHandler(deps *module.Dependencies) *SimpleServiceEchoStringHandler
NewSimpleServiceEchoStringHandler creates a handler to be registered with a thrift server.
func (*SimpleServiceEchoStringHandler) Handle ¶
func (h *SimpleServiceEchoStringHandler) Handle( ctx context.Context, reqHeaders map[string]string, wireValue *wire.Value, ) (isSuccessful bool, response zanzibar.RWTStruct, headers map[string]string, e error)
Handle handles RPC call of "SimpleService::EchoString".
Click to show internal directories.
Click to hide internal directories.