120 lines
4.4 KiB
Go
120 lines
4.4 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.5.1
|
|
// - protoc v3.14.0
|
|
// source: proto/node.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 (
|
|
Node_Alive_FullMethodName = "/deevirt.Node/Alive"
|
|
)
|
|
|
|
// NodeClient is the client API for Node 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.
|
|
//
|
|
// The greeting service definition.
|
|
type NodeClient interface {
|
|
Alive(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[NodeAliveRequest, NodeAliveQemuResponse], error)
|
|
}
|
|
|
|
type nodeClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewNodeClient(cc grpc.ClientConnInterface) NodeClient {
|
|
return &nodeClient{cc}
|
|
}
|
|
|
|
func (c *nodeClient) Alive(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[NodeAliveRequest, NodeAliveQemuResponse], error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
stream, err := c.cc.NewStream(ctx, &Node_ServiceDesc.Streams[0], Node_Alive_FullMethodName, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &grpc.GenericClientStream[NodeAliveRequest, NodeAliveQemuResponse]{ClientStream: stream}
|
|
return x, nil
|
|
}
|
|
|
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
|
type Node_AliveClient = grpc.BidiStreamingClient[NodeAliveRequest, NodeAliveQemuResponse]
|
|
|
|
// NodeServer is the server API for Node service.
|
|
// All implementations must embed UnimplementedNodeServer
|
|
// for forward compatibility.
|
|
//
|
|
// The greeting service definition.
|
|
type NodeServer interface {
|
|
Alive(grpc.BidiStreamingServer[NodeAliveRequest, NodeAliveQemuResponse]) error
|
|
mustEmbedUnimplementedNodeServer()
|
|
}
|
|
|
|
// UnimplementedNodeServer 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 UnimplementedNodeServer struct{}
|
|
|
|
func (UnimplementedNodeServer) Alive(grpc.BidiStreamingServer[NodeAliveRequest, NodeAliveQemuResponse]) error {
|
|
return status.Errorf(codes.Unimplemented, "method Alive not implemented")
|
|
}
|
|
func (UnimplementedNodeServer) mustEmbedUnimplementedNodeServer() {}
|
|
func (UnimplementedNodeServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeNodeServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to NodeServer will
|
|
// result in compilation errors.
|
|
type UnsafeNodeServer interface {
|
|
mustEmbedUnimplementedNodeServer()
|
|
}
|
|
|
|
func RegisterNodeServer(s grpc.ServiceRegistrar, srv NodeServer) {
|
|
// If the following call pancis, it indicates UnimplementedNodeServer 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(&Node_ServiceDesc, srv)
|
|
}
|
|
|
|
func _Node_Alive_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(NodeServer).Alive(&grpc.GenericServerStream[NodeAliveRequest, NodeAliveQemuResponse]{ServerStream: stream})
|
|
}
|
|
|
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
|
type Node_AliveServer = grpc.BidiStreamingServer[NodeAliveRequest, NodeAliveQemuResponse]
|
|
|
|
// Node_ServiceDesc is the grpc.ServiceDesc for Node service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var Node_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "deevirt.Node",
|
|
HandlerType: (*NodeServer)(nil),
|
|
Methods: []grpc.MethodDesc{},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "Alive",
|
|
Handler: _Node_Alive_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "proto/node.proto",
|
|
}
|