Documentation ¶
Index ¶
- func DecodeGRPCCreateUserRequest(_ context.Context, grpcReq interface{}) (interface{}, error)
- func DecodeGRPCDeleteUserRequest(_ context.Context, grpcReq interface{}) (interface{}, error)
- func DecodeGRPCReadUserRequest(_ context.Context, grpcReq interface{}) (interface{}, error)
- func DecodeGRPCUpdateUserRequest(_ context.Context, grpcReq interface{}) (interface{}, error)
- func EncodeGRPCCreateUserResponse(_ context.Context, response interface{}) (interface{}, error)
- func EncodeGRPCDeleteUserResponse(_ context.Context, response interface{}) (interface{}, error)
- func EncodeGRPCReadUserResponse(_ context.Context, response interface{}) (interface{}, error)
- func EncodeGRPCUpdateUserResponse(_ context.Context, response interface{}) (interface{}, error)
- func EncodeHTTPGenericResponse(_ context.Context, w http.ResponseWriter, response interface{}) error
- func MakeCreateUserEndpoint(s pb.UsersServer) endpoint.Endpoint
- func MakeDeleteUserEndpoint(s pb.UsersServer) endpoint.Endpoint
- func MakeGRPCServer(endpoints Endpoints) pb.UsersServer
- func MakeHTTPHandler(endpoints Endpoints) http.Handler
- func MakeReadUserEndpoint(s pb.UsersServer) endpoint.Endpoint
- func MakeUpdateUserEndpoint(s pb.UsersServer) endpoint.Endpoint
- type Endpoints
- func (e Endpoints) CreateUser(ctx context.Context, in *pb.User) (*pb.User, error)
- func (e Endpoints) DeleteUser(ctx context.Context, in *pb.User) (*pb.User, error)
- func (e Endpoints) ReadUser(ctx context.Context, in *pb.User) (*pb.User, error)
- func (e Endpoints) UpdateUser(ctx context.Context, in *pb.User) (*pb.User, error)
- func (e *Endpoints) WrapAllExcept(middleware endpoint.Middleware, excluded ...string)
- func (e *Endpoints) WrapAllLabeledExcept(middleware func(string, endpoint.Endpoint) endpoint.Endpoint, ...)
- type LabeledMiddleware
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DecodeGRPCCreateUserRequest ¶
DecodeGRPCCreateUserRequest is a transport/grpc.DecodeRequestFunc that converts a gRPC createuser request to a user-domain createuser request. Primarily useful in a server.
func DecodeGRPCDeleteUserRequest ¶
DecodeGRPCDeleteUserRequest is a transport/grpc.DecodeRequestFunc that converts a gRPC deleteuser request to a user-domain deleteuser request. Primarily useful in a server.
func DecodeGRPCReadUserRequest ¶
DecodeGRPCReadUserRequest is a transport/grpc.DecodeRequestFunc that converts a gRPC readuser request to a user-domain readuser request. Primarily useful in a server.
func DecodeGRPCUpdateUserRequest ¶
DecodeGRPCUpdateUserRequest is a transport/grpc.DecodeRequestFunc that converts a gRPC updateuser request to a user-domain updateuser request. Primarily useful in a server.
func EncodeGRPCCreateUserResponse ¶
EncodeGRPCCreateUserResponse is a transport/grpc.EncodeResponseFunc that converts a user-domain createuser response to a gRPC createuser reply. Primarily useful in a server.
func EncodeGRPCDeleteUserResponse ¶
EncodeGRPCDeleteUserResponse is a transport/grpc.EncodeResponseFunc that converts a user-domain deleteuser response to a gRPC deleteuser reply. Primarily useful in a server.
func EncodeGRPCReadUserResponse ¶
EncodeGRPCReadUserResponse is a transport/grpc.EncodeResponseFunc that converts a user-domain readuser response to a gRPC readuser reply. Primarily useful in a server.
func EncodeGRPCUpdateUserResponse ¶
EncodeGRPCUpdateUserResponse is a transport/grpc.EncodeResponseFunc that converts a user-domain updateuser response to a gRPC updateuser reply. Primarily useful in a server.
func EncodeHTTPGenericResponse ¶
func EncodeHTTPGenericResponse(_ context.Context, w http.ResponseWriter, response interface{}) error
EncodeHTTPGenericResponse is a transport/http.EncodeResponseFunc that encodes the response as JSON to the response writer. Primarily useful in a server.
func MakeCreateUserEndpoint ¶
func MakeCreateUserEndpoint(s pb.UsersServer) endpoint.Endpoint
func MakeDeleteUserEndpoint ¶
func MakeDeleteUserEndpoint(s pb.UsersServer) endpoint.Endpoint
func MakeGRPCServer ¶
func MakeGRPCServer(endpoints Endpoints) pb.UsersServer
MakeGRPCServer makes a set of endpoints available as a gRPC UsersServer.
func MakeHTTPHandler ¶
MakeHTTPHandler returns a handler that makes a set of endpoints available on predefined paths.
func MakeReadUserEndpoint ¶
func MakeReadUserEndpoint(s pb.UsersServer) endpoint.Endpoint
func MakeUpdateUserEndpoint ¶
func MakeUpdateUserEndpoint(s pb.UsersServer) endpoint.Endpoint
Types ¶
type Endpoints ¶
type Endpoints struct { CreateUserEndpoint endpoint.Endpoint ReadUserEndpoint endpoint.Endpoint UpdateUserEndpoint endpoint.Endpoint DeleteUserEndpoint endpoint.Endpoint }
Endpoints collects all of the endpoints that compose an add service. It's meant to be used as a helper struct, to collect all of the endpoints into a single parameter.
In a server, it's useful for functions that need to operate on a per-endpoint basis. For example, you might pass an Endpoints to a function that produces an http.Handler, with each method (endpoint) wired up to a specific path. (It is probably a mistake in design to invoke the Service methods on the Endpoints struct in a server.)
In a client, it's useful to collect individually constructed endpoints into a single type that implements the Service interface. For example, you might construct individual endpoints using transport/http.NewClient, combine them into an Endpoints, and return it to the caller as a Service.
func (Endpoints) CreateUser ¶
func (Endpoints) DeleteUser ¶
func (Endpoints) UpdateUser ¶
func (*Endpoints) WrapAllExcept ¶
func (e *Endpoints) WrapAllExcept(middleware endpoint.Middleware, excluded ...string)
WrapAllExcept wraps each Endpoint field of struct Endpoints with a go-kit/kit/endpoint.Middleware. Use this for applying a set of middlewares to every endpoint in the service. Optionally, endpoints can be passed in by name to be excluded from being wrapped. WrapAllExcept(middleware, "Status", "Ping")
func (*Endpoints) WrapAllLabeledExcept ¶
func (e *Endpoints) WrapAllLabeledExcept(middleware func(string, endpoint.Endpoint) endpoint.Endpoint, excluded ...string)
WrapAllLabeledExcept wraps each Endpoint field of struct Endpoints with a LabeledMiddleware, which will receive the name of the endpoint. See LabeldMiddleware. See method WrapAllExept for details on excluded functionality.
type LabeledMiddleware ¶
LabeledMiddleware will get passed the endpoint name when passed to WrapAllLabeledExcept, this can be used to write a generic metrics middleware which can send the endpoint name to the metrics collector.