erigon-pulse/gointerfaces/remote/ethbackend_grpc.pb.go
Alexey Sharp 48731e8f1d Fix paths
2021-07-01 16:44:00 +01:00

354 lines
13 KiB
Go

// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
package remote
import (
context "context"
types "github.com/ledgerwatch/erigon-lib/gointerfaces/types"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
emptypb "google.golang.org/protobuf/types/known/emptypb"
)
// 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
// ETHBACKENDClient is the client API for ETHBACKEND 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 ETHBACKENDClient interface {
Etherbase(ctx context.Context, in *EtherbaseRequest, opts ...grpc.CallOption) (*EtherbaseReply, error)
NetVersion(ctx context.Context, in *NetVersionRequest, opts ...grpc.CallOption) (*NetVersionReply, error)
NetPeerCount(ctx context.Context, in *NetPeerCountRequest, opts ...grpc.CallOption) (*NetPeerCountReply, error)
// Version returns the service version number
Version(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*types.VersionReply, error)
// ProtocolVersion returns the Ethereum protocol version number (e.g. 66 for ETH66).
ProtocolVersion(ctx context.Context, in *ProtocolVersionRequest, opts ...grpc.CallOption) (*ProtocolVersionReply, error)
// ClientVersion returns the Ethereum client version string using node name convention (e.g. TurboGeth/v2021.03.2-alpha/Linux).
ClientVersion(ctx context.Context, in *ClientVersionRequest, opts ...grpc.CallOption) (*ClientVersionReply, error)
Subscribe(ctx context.Context, in *SubscribeRequest, opts ...grpc.CallOption) (ETHBACKEND_SubscribeClient, error)
}
type eTHBACKENDClient struct {
cc grpc.ClientConnInterface
}
func NewETHBACKENDClient(cc grpc.ClientConnInterface) ETHBACKENDClient {
return &eTHBACKENDClient{cc}
}
func (c *eTHBACKENDClient) Etherbase(ctx context.Context, in *EtherbaseRequest, opts ...grpc.CallOption) (*EtherbaseReply, error) {
out := new(EtherbaseReply)
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/Etherbase", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *eTHBACKENDClient) NetVersion(ctx context.Context, in *NetVersionRequest, opts ...grpc.CallOption) (*NetVersionReply, error) {
out := new(NetVersionReply)
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/NetVersion", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *eTHBACKENDClient) NetPeerCount(ctx context.Context, in *NetPeerCountRequest, opts ...grpc.CallOption) (*NetPeerCountReply, error) {
out := new(NetPeerCountReply)
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/NetPeerCount", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *eTHBACKENDClient) Version(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*types.VersionReply, error) {
out := new(types.VersionReply)
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/Version", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *eTHBACKENDClient) ProtocolVersion(ctx context.Context, in *ProtocolVersionRequest, opts ...grpc.CallOption) (*ProtocolVersionReply, error) {
out := new(ProtocolVersionReply)
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/ProtocolVersion", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *eTHBACKENDClient) ClientVersion(ctx context.Context, in *ClientVersionRequest, opts ...grpc.CallOption) (*ClientVersionReply, error) {
out := new(ClientVersionReply)
err := c.cc.Invoke(ctx, "/remote.ETHBACKEND/ClientVersion", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *eTHBACKENDClient) Subscribe(ctx context.Context, in *SubscribeRequest, opts ...grpc.CallOption) (ETHBACKEND_SubscribeClient, error) {
stream, err := c.cc.NewStream(ctx, &ETHBACKEND_ServiceDesc.Streams[0], "/remote.ETHBACKEND/Subscribe", opts...)
if err != nil {
return nil, err
}
x := &eTHBACKENDSubscribeClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type ETHBACKEND_SubscribeClient interface {
Recv() (*SubscribeReply, error)
grpc.ClientStream
}
type eTHBACKENDSubscribeClient struct {
grpc.ClientStream
}
func (x *eTHBACKENDSubscribeClient) Recv() (*SubscribeReply, error) {
m := new(SubscribeReply)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
// ETHBACKENDServer is the server API for ETHBACKEND service.
// All implementations must embed UnimplementedETHBACKENDServer
// for forward compatibility
type ETHBACKENDServer interface {
Etherbase(context.Context, *EtherbaseRequest) (*EtherbaseReply, error)
NetVersion(context.Context, *NetVersionRequest) (*NetVersionReply, error)
NetPeerCount(context.Context, *NetPeerCountRequest) (*NetPeerCountReply, error)
// Version returns the service version number
Version(context.Context, *emptypb.Empty) (*types.VersionReply, error)
// ProtocolVersion returns the Ethereum protocol version number (e.g. 66 for ETH66).
ProtocolVersion(context.Context, *ProtocolVersionRequest) (*ProtocolVersionReply, error)
// ClientVersion returns the Ethereum client version string using node name convention (e.g. TurboGeth/v2021.03.2-alpha/Linux).
ClientVersion(context.Context, *ClientVersionRequest) (*ClientVersionReply, error)
Subscribe(*SubscribeRequest, ETHBACKEND_SubscribeServer) error
mustEmbedUnimplementedETHBACKENDServer()
}
// UnimplementedETHBACKENDServer must be embedded to have forward compatible implementations.
type UnimplementedETHBACKENDServer struct {
}
func (UnimplementedETHBACKENDServer) Etherbase(context.Context, *EtherbaseRequest) (*EtherbaseReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method Etherbase not implemented")
}
func (UnimplementedETHBACKENDServer) NetVersion(context.Context, *NetVersionRequest) (*NetVersionReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method NetVersion not implemented")
}
func (UnimplementedETHBACKENDServer) NetPeerCount(context.Context, *NetPeerCountRequest) (*NetPeerCountReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method NetPeerCount not implemented")
}
func (UnimplementedETHBACKENDServer) Version(context.Context, *emptypb.Empty) (*types.VersionReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method Version not implemented")
}
func (UnimplementedETHBACKENDServer) ProtocolVersion(context.Context, *ProtocolVersionRequest) (*ProtocolVersionReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProtocolVersion not implemented")
}
func (UnimplementedETHBACKENDServer) ClientVersion(context.Context, *ClientVersionRequest) (*ClientVersionReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method ClientVersion not implemented")
}
func (UnimplementedETHBACKENDServer) Subscribe(*SubscribeRequest, ETHBACKEND_SubscribeServer) error {
return status.Errorf(codes.Unimplemented, "method Subscribe not implemented")
}
func (UnimplementedETHBACKENDServer) mustEmbedUnimplementedETHBACKENDServer() {}
// UnsafeETHBACKENDServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to ETHBACKENDServer will
// result in compilation errors.
type UnsafeETHBACKENDServer interface {
mustEmbedUnimplementedETHBACKENDServer()
}
func RegisterETHBACKENDServer(s grpc.ServiceRegistrar, srv ETHBACKENDServer) {
s.RegisterService(&ETHBACKEND_ServiceDesc, srv)
}
func _ETHBACKEND_Etherbase_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(EtherbaseRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ETHBACKENDServer).Etherbase(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/remote.ETHBACKEND/Etherbase",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ETHBACKENDServer).Etherbase(ctx, req.(*EtherbaseRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ETHBACKEND_NetVersion_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(NetVersionRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ETHBACKENDServer).NetVersion(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/remote.ETHBACKEND/NetVersion",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ETHBACKENDServer).NetVersion(ctx, req.(*NetVersionRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ETHBACKEND_NetPeerCount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(NetPeerCountRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ETHBACKENDServer).NetPeerCount(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/remote.ETHBACKEND/NetPeerCount",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ETHBACKENDServer).NetPeerCount(ctx, req.(*NetPeerCountRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ETHBACKEND_Version_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(emptypb.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ETHBACKENDServer).Version(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/remote.ETHBACKEND/Version",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ETHBACKENDServer).Version(ctx, req.(*emptypb.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _ETHBACKEND_ProtocolVersion_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ProtocolVersionRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ETHBACKENDServer).ProtocolVersion(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/remote.ETHBACKEND/ProtocolVersion",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ETHBACKENDServer).ProtocolVersion(ctx, req.(*ProtocolVersionRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ETHBACKEND_ClientVersion_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ClientVersionRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ETHBACKENDServer).ClientVersion(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/remote.ETHBACKEND/ClientVersion",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ETHBACKENDServer).ClientVersion(ctx, req.(*ClientVersionRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ETHBACKEND_Subscribe_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(SubscribeRequest)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(ETHBACKENDServer).Subscribe(m, &eTHBACKENDSubscribeServer{stream})
}
type ETHBACKEND_SubscribeServer interface {
Send(*SubscribeReply) error
grpc.ServerStream
}
type eTHBACKENDSubscribeServer struct {
grpc.ServerStream
}
func (x *eTHBACKENDSubscribeServer) Send(m *SubscribeReply) error {
return x.ServerStream.SendMsg(m)
}
// ETHBACKEND_ServiceDesc is the grpc.ServiceDesc for ETHBACKEND service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var ETHBACKEND_ServiceDesc = grpc.ServiceDesc{
ServiceName: "remote.ETHBACKEND",
HandlerType: (*ETHBACKENDServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Etherbase",
Handler: _ETHBACKEND_Etherbase_Handler,
},
{
MethodName: "NetVersion",
Handler: _ETHBACKEND_NetVersion_Handler,
},
{
MethodName: "NetPeerCount",
Handler: _ETHBACKEND_NetPeerCount_Handler,
},
{
MethodName: "Version",
Handler: _ETHBACKEND_Version_Handler,
},
{
MethodName: "ProtocolVersion",
Handler: _ETHBACKEND_ProtocolVersion_Handler,
},
{
MethodName: "ClientVersion",
Handler: _ETHBACKEND_ClientVersion_Handler,
},
},
Streams: []grpc.StreamDesc{
{
StreamName: "Subscribe",
Handler: _ETHBACKEND_Subscribe_Handler,
ServerStreams: true,
},
},
Metadata: "remote/ethbackend.proto",
}