Documentation ¶
Index ¶
- Constants
- func NewBooksServiceHandler(svc BooksServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type BooksServiceClient
- type BooksServiceHandler
- type UnimplementedBooksServiceHandler
- func (UnimplementedBooksServiceHandler) CreateBook(context.Context, *connect.Request[v1.CreateBookRequest]) (*connect.Response[v1.CreateBookResponse], error)
- func (UnimplementedBooksServiceHandler) DeleteBook(context.Context, *connect.Request[v1.DeleteBookRequest]) (*connect.Response[v1.DeleteBookResponse], error)
- func (UnimplementedBooksServiceHandler) GetBook(context.Context, *connect.Request[v1.GetBookRequest]) (*connect.Response[v1.GetBookResponse], error)
- func (UnimplementedBooksServiceHandler) ListBooks(context.Context, *connect.Request[v1.ListBooksRequest]) (*connect.Response[v1.ListBooksResponse], error)
- func (UnimplementedBooksServiceHandler) UpdateBook(context.Context, *connect.Request[v1.UpdateBookRequest]) (*connect.Response[v1.UpdateBookResponse], error)
Constants ¶
const ( // BooksServiceListBooksProcedure is the fully-qualified name of the BooksService's ListBooks RPC. BooksServiceListBooksProcedure = "/books.v1.BooksService/ListBooks" // BooksServiceGetBookProcedure is the fully-qualified name of the BooksService's GetBook RPC. BooksServiceGetBookProcedure = "/books.v1.BooksService/GetBook" // BooksServiceCreateBookProcedure is the fully-qualified name of the BooksService's CreateBook RPC. BooksServiceCreateBookProcedure = "/books.v1.BooksService/CreateBook" // BooksServiceUpdateBookProcedure is the fully-qualified name of the BooksService's UpdateBook RPC. BooksServiceUpdateBookProcedure = "/books.v1.BooksService/UpdateBook" // BooksServiceDeleteBookProcedure is the fully-qualified name of the BooksService's DeleteBook RPC. BooksServiceDeleteBookProcedure = "/books.v1.BooksService/DeleteBook" )
These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.
const (
// BooksServiceName is the fully-qualified name of the BooksService service.
BooksServiceName = "books.v1.BooksService"
)
Variables ¶
This section is empty.
Functions ¶
func NewBooksServiceHandler ¶
func NewBooksServiceHandler(svc BooksServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewBooksServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.
By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.
Types ¶
type BooksServiceClient ¶
type BooksServiceClient interface { ListBooks(context.Context, *connect.Request[v1.ListBooksRequest]) (*connect.Response[v1.ListBooksResponse], error) GetBook(context.Context, *connect.Request[v1.GetBookRequest]) (*connect.Response[v1.GetBookResponse], error) CreateBook(context.Context, *connect.Request[v1.CreateBookRequest]) (*connect.Response[v1.CreateBookResponse], error) UpdateBook(context.Context, *connect.Request[v1.UpdateBookRequest]) (*connect.Response[v1.UpdateBookResponse], error) DeleteBook(context.Context, *connect.Request[v1.DeleteBookRequest]) (*connect.Response[v1.DeleteBookResponse], error) }
BooksServiceClient is a client for the books.v1.BooksService service.
func NewBooksServiceClient ¶
func NewBooksServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) BooksServiceClient
NewBooksServiceClient constructs a client for the books.v1.BooksService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.
The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).
type BooksServiceHandler ¶
type BooksServiceHandler interface { ListBooks(context.Context, *connect.Request[v1.ListBooksRequest]) (*connect.Response[v1.ListBooksResponse], error) GetBook(context.Context, *connect.Request[v1.GetBookRequest]) (*connect.Response[v1.GetBookResponse], error) CreateBook(context.Context, *connect.Request[v1.CreateBookRequest]) (*connect.Response[v1.CreateBookResponse], error) UpdateBook(context.Context, *connect.Request[v1.UpdateBookRequest]) (*connect.Response[v1.UpdateBookResponse], error) DeleteBook(context.Context, *connect.Request[v1.DeleteBookRequest]) (*connect.Response[v1.DeleteBookResponse], error) }
BooksServiceHandler is an implementation of the books.v1.BooksService service.
type UnimplementedBooksServiceHandler ¶
type UnimplementedBooksServiceHandler struct{}
UnimplementedBooksServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedBooksServiceHandler) CreateBook ¶
func (UnimplementedBooksServiceHandler) CreateBook(context.Context, *connect.Request[v1.CreateBookRequest]) (*connect.Response[v1.CreateBookResponse], error)
func (UnimplementedBooksServiceHandler) DeleteBook ¶
func (UnimplementedBooksServiceHandler) DeleteBook(context.Context, *connect.Request[v1.DeleteBookRequest]) (*connect.Response[v1.DeleteBookResponse], error)
func (UnimplementedBooksServiceHandler) GetBook ¶
func (UnimplementedBooksServiceHandler) GetBook(context.Context, *connect.Request[v1.GetBookRequest]) (*connect.Response[v1.GetBookResponse], error)
func (UnimplementedBooksServiceHandler) ListBooks ¶
func (UnimplementedBooksServiceHandler) ListBooks(context.Context, *connect.Request[v1.ListBooksRequest]) (*connect.Response[v1.ListBooksResponse], error)
func (UnimplementedBooksServiceHandler) UpdateBook ¶
func (UnimplementedBooksServiceHandler) UpdateBook(context.Context, *connect.Request[v1.UpdateBookRequest]) (*connect.Response[v1.UpdateBookResponse], error)