// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.3.0 // - protoc v3.21.12 // source: node.proto package protobufs 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 ( NodeService_GetFrames_FullMethodName = "/quilibrium.node.node.pb.NodeService/GetFrames" NodeService_GetFrameInfo_FullMethodName = "/quilibrium.node.node.pb.NodeService/GetFrameInfo" NodeService_GetPeerInfo_FullMethodName = "/quilibrium.node.node.pb.NodeService/GetPeerInfo" NodeService_GetNetworkInfo_FullMethodName = "/quilibrium.node.node.pb.NodeService/GetNetworkInfo" ) // NodeServiceClient is the client API for NodeService 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 NodeServiceClient interface { GetFrames(ctx context.Context, in *GetFramesRequest, opts ...grpc.CallOption) (*FramesResponse, error) GetFrameInfo(ctx context.Context, in *GetFrameInfoRequest, opts ...grpc.CallOption) (*FrameInfoResponse, error) GetPeerInfo(ctx context.Context, in *GetPeerInfoRequest, opts ...grpc.CallOption) (*PeerInfoResponse, error) GetNetworkInfo(ctx context.Context, in *GetNetworkInfoRequest, opts ...grpc.CallOption) (*NetworkInfoResponse, error) } type nodeServiceClient struct { cc grpc.ClientConnInterface } func NewNodeServiceClient(cc grpc.ClientConnInterface) NodeServiceClient { return &nodeServiceClient{cc} } func (c *nodeServiceClient) GetFrames(ctx context.Context, in *GetFramesRequest, opts ...grpc.CallOption) (*FramesResponse, error) { out := new(FramesResponse) err := c.cc.Invoke(ctx, NodeService_GetFrames_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *nodeServiceClient) GetFrameInfo(ctx context.Context, in *GetFrameInfoRequest, opts ...grpc.CallOption) (*FrameInfoResponse, error) { out := new(FrameInfoResponse) err := c.cc.Invoke(ctx, NodeService_GetFrameInfo_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *nodeServiceClient) GetPeerInfo(ctx context.Context, in *GetPeerInfoRequest, opts ...grpc.CallOption) (*PeerInfoResponse, error) { out := new(PeerInfoResponse) err := c.cc.Invoke(ctx, NodeService_GetPeerInfo_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *nodeServiceClient) GetNetworkInfo(ctx context.Context, in *GetNetworkInfoRequest, opts ...grpc.CallOption) (*NetworkInfoResponse, error) { out := new(NetworkInfoResponse) err := c.cc.Invoke(ctx, NodeService_GetNetworkInfo_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } // NodeServiceServer is the server API for NodeService service. // All implementations must embed UnimplementedNodeServiceServer // for forward compatibility type NodeServiceServer interface { GetFrames(context.Context, *GetFramesRequest) (*FramesResponse, error) GetFrameInfo(context.Context, *GetFrameInfoRequest) (*FrameInfoResponse, error) GetPeerInfo(context.Context, *GetPeerInfoRequest) (*PeerInfoResponse, error) GetNetworkInfo(context.Context, *GetNetworkInfoRequest) (*NetworkInfoResponse, error) mustEmbedUnimplementedNodeServiceServer() } // UnimplementedNodeServiceServer must be embedded to have forward compatible implementations. type UnimplementedNodeServiceServer struct { } func (UnimplementedNodeServiceServer) GetFrames(context.Context, *GetFramesRequest) (*FramesResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetFrames not implemented") } func (UnimplementedNodeServiceServer) GetFrameInfo(context.Context, *GetFrameInfoRequest) (*FrameInfoResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetFrameInfo not implemented") } func (UnimplementedNodeServiceServer) GetPeerInfo(context.Context, *GetPeerInfoRequest) (*PeerInfoResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetPeerInfo not implemented") } func (UnimplementedNodeServiceServer) GetNetworkInfo(context.Context, *GetNetworkInfoRequest) (*NetworkInfoResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetNetworkInfo not implemented") } func (UnimplementedNodeServiceServer) mustEmbedUnimplementedNodeServiceServer() {} // UnsafeNodeServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to NodeServiceServer will // result in compilation errors. type UnsafeNodeServiceServer interface { mustEmbedUnimplementedNodeServiceServer() } func RegisterNodeServiceServer(s grpc.ServiceRegistrar, srv NodeServiceServer) { s.RegisterService(&NodeService_ServiceDesc, srv) } func _NodeService_GetFrames_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetFramesRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(NodeServiceServer).GetFrames(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: NodeService_GetFrames_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(NodeServiceServer).GetFrames(ctx, req.(*GetFramesRequest)) } return interceptor(ctx, in, info, handler) } func _NodeService_GetFrameInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetFrameInfoRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(NodeServiceServer).GetFrameInfo(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: NodeService_GetFrameInfo_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(NodeServiceServer).GetFrameInfo(ctx, req.(*GetFrameInfoRequest)) } return interceptor(ctx, in, info, handler) } func _NodeService_GetPeerInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetPeerInfoRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(NodeServiceServer).GetPeerInfo(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: NodeService_GetPeerInfo_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(NodeServiceServer).GetPeerInfo(ctx, req.(*GetPeerInfoRequest)) } return interceptor(ctx, in, info, handler) } func _NodeService_GetNetworkInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetNetworkInfoRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(NodeServiceServer).GetNetworkInfo(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: NodeService_GetNetworkInfo_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(NodeServiceServer).GetNetworkInfo(ctx, req.(*GetNetworkInfoRequest)) } return interceptor(ctx, in, info, handler) } // NodeService_ServiceDesc is the grpc.ServiceDesc for NodeService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var NodeService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "quilibrium.node.node.pb.NodeService", HandlerType: (*NodeServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetFrames", Handler: _NodeService_GetFrames_Handler, }, { MethodName: "GetFrameInfo", Handler: _NodeService_GetFrameInfo_Handler, }, { MethodName: "GetPeerInfo", Handler: _NodeService_GetPeerInfo_Handler, }, { MethodName: "GetNetworkInfo", Handler: _NodeService_GetNetworkInfo_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "node.proto", }