122 lines
4.3 KiB
Go
122 lines
4.3 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.5.1
|
|
// - protoc v5.28.3
|
|
// source: feed.proto
|
|
|
|
package proto
|
|
|
|
import (
|
|
context "context"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.64.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion9
|
|
|
|
const (
|
|
FeedService_GetFeed_FullMethodName = "/proto.FeedService/GetFeed"
|
|
)
|
|
|
|
// FeedServiceClient is the client API for FeedService service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
type FeedServiceClient interface {
|
|
GetFeed(ctx context.Context, in *GetFeedRequest, opts ...grpc.CallOption) (*GetFeedResponse, error)
|
|
}
|
|
|
|
type feedServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewFeedServiceClient(cc grpc.ClientConnInterface) FeedServiceClient {
|
|
return &feedServiceClient{cc}
|
|
}
|
|
|
|
func (c *feedServiceClient) GetFeed(ctx context.Context, in *GetFeedRequest, opts ...grpc.CallOption) (*GetFeedResponse, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(GetFeedResponse)
|
|
err := c.cc.Invoke(ctx, FeedService_GetFeed_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// FeedServiceServer is the server API for FeedService service.
|
|
// All implementations must embed UnimplementedFeedServiceServer
|
|
// for forward compatibility.
|
|
type FeedServiceServer interface {
|
|
GetFeed(context.Context, *GetFeedRequest) (*GetFeedResponse, error)
|
|
mustEmbedUnimplementedFeedServiceServer()
|
|
}
|
|
|
|
// UnimplementedFeedServiceServer must be embedded to have
|
|
// forward compatible implementations.
|
|
//
|
|
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
|
// pointer dereference when methods are called.
|
|
type UnimplementedFeedServiceServer struct{}
|
|
|
|
func (UnimplementedFeedServiceServer) GetFeed(context.Context, *GetFeedRequest) (*GetFeedResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetFeed not implemented")
|
|
}
|
|
func (UnimplementedFeedServiceServer) mustEmbedUnimplementedFeedServiceServer() {}
|
|
func (UnimplementedFeedServiceServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeFeedServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to FeedServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeFeedServiceServer interface {
|
|
mustEmbedUnimplementedFeedServiceServer()
|
|
}
|
|
|
|
func RegisterFeedServiceServer(s grpc.ServiceRegistrar, srv FeedServiceServer) {
|
|
// If the following call pancis, it indicates UnimplementedFeedServiceServer was
|
|
// embedded by pointer and is nil. This will cause panics if an
|
|
// unimplemented method is ever invoked, so we test this at initialization
|
|
// time to prevent it from happening at runtime later due to I/O.
|
|
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
|
t.testEmbeddedByValue()
|
|
}
|
|
s.RegisterService(&FeedService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _FeedService_GetFeed_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetFeedRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(FeedServiceServer).GetFeed(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: FeedService_GetFeed_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(FeedServiceServer).GetFeed(ctx, req.(*GetFeedRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// FeedService_ServiceDesc is the grpc.ServiceDesc for FeedService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var FeedService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "proto.FeedService",
|
|
HandlerType: (*FeedServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "GetFeed",
|
|
Handler: _FeedService_GetFeed_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "feed.proto",
|
|
}
|