114 lines
4.4 KiB
Go
114 lines
4.4 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.3.0
|
|
// - protoc (unknown)
|
|
// source: cosmos/reflection/v1/reflection.proto
|
|
|
|
package reflectionv1
|
|
|
|
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.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
const (
|
|
ReflectionService_FileDescriptors_FullMethodName = "/cosmos.reflection.v1.ReflectionService/FileDescriptors"
|
|
)
|
|
|
|
// ReflectionServiceClient is the client API for ReflectionService 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 ReflectionServiceClient interface {
|
|
// FileDescriptors queries all the file descriptors in the app in order
|
|
// to enable easier generation of dynamic clients.
|
|
FileDescriptors(ctx context.Context, in *FileDescriptorsRequest, opts ...grpc.CallOption) (*FileDescriptorsResponse, error)
|
|
}
|
|
|
|
type reflectionServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewReflectionServiceClient(cc grpc.ClientConnInterface) ReflectionServiceClient {
|
|
return &reflectionServiceClient{cc}
|
|
}
|
|
|
|
func (c *reflectionServiceClient) FileDescriptors(ctx context.Context, in *FileDescriptorsRequest, opts ...grpc.CallOption) (*FileDescriptorsResponse, error) {
|
|
out := new(FileDescriptorsResponse)
|
|
err := c.cc.Invoke(ctx, ReflectionService_FileDescriptors_FullMethodName, in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// ReflectionServiceServer is the server API for ReflectionService service.
|
|
// All implementations must embed UnimplementedReflectionServiceServer
|
|
// for forward compatibility
|
|
type ReflectionServiceServer interface {
|
|
// FileDescriptors queries all the file descriptors in the app in order
|
|
// to enable easier generation of dynamic clients.
|
|
FileDescriptors(context.Context, *FileDescriptorsRequest) (*FileDescriptorsResponse, error)
|
|
mustEmbedUnimplementedReflectionServiceServer()
|
|
}
|
|
|
|
// UnimplementedReflectionServiceServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedReflectionServiceServer struct {
|
|
}
|
|
|
|
func (UnimplementedReflectionServiceServer) FileDescriptors(context.Context, *FileDescriptorsRequest) (*FileDescriptorsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method FileDescriptors not implemented")
|
|
}
|
|
func (UnimplementedReflectionServiceServer) mustEmbedUnimplementedReflectionServiceServer() {}
|
|
|
|
// UnsafeReflectionServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to ReflectionServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeReflectionServiceServer interface {
|
|
mustEmbedUnimplementedReflectionServiceServer()
|
|
}
|
|
|
|
func RegisterReflectionServiceServer(s grpc.ServiceRegistrar, srv ReflectionServiceServer) {
|
|
s.RegisterService(&ReflectionService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _ReflectionService_FileDescriptors_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(FileDescriptorsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ReflectionServiceServer).FileDescriptors(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: ReflectionService_FileDescriptors_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ReflectionServiceServer).FileDescriptors(ctx, req.(*FileDescriptorsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// ReflectionService_ServiceDesc is the grpc.ServiceDesc for ReflectionService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var ReflectionService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "cosmos.reflection.v1.ReflectionService",
|
|
HandlerType: (*ReflectionServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "FileDescriptors",
|
|
Handler: _ReflectionService_FileDescriptors_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "cosmos/reflection/v1/reflection.proto",
|
|
}
|