Documentation ¶
Index ¶
- Constants
- Variables
- func RegisterMetaTransactionServiceServer(s grpc.ServiceRegistrar, srv MetaTransactionServiceServer)
- type CleanStuckMetaTransactionsResponse
- func (*CleanStuckMetaTransactionsResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CleanStuckMetaTransactionsResponse) GetId() string
- func (*CleanStuckMetaTransactionsResponse) ProtoMessage()
- func (x *CleanStuckMetaTransactionsResponse) ProtoReflect() protoreflect.Message
- func (x *CleanStuckMetaTransactionsResponse) Reset()
- func (x *CleanStuckMetaTransactionsResponse) String() string
- type MetaTransactionServiceClient
- type MetaTransactionServiceServer
- type UnimplementedMetaTransactionServiceServer
- type UnsafeMetaTransactionServiceServer
Constants ¶
const (
MetaTransactionService_CleanStuckMetaTransactions_FullMethodName = "/metatransactions.MetaTransactionService/CleanStuckMetaTransactions"
)
Variables ¶
var File_pkg_grpc_meta_transactions_proto protoreflect.FileDescriptor
var MetaTransactionService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "metatransactions.MetaTransactionService", HandlerType: (*MetaTransactionServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "CleanStuckMetaTransactions", Handler: _MetaTransactionService_CleanStuckMetaTransactions_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "pkg/grpc/meta_transactions.proto", }
MetaTransactionService_ServiceDesc is the grpc.ServiceDesc for MetaTransactionService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterMetaTransactionServiceServer ¶
func RegisterMetaTransactionServiceServer(s grpc.ServiceRegistrar, srv MetaTransactionServiceServer)
Types ¶
type CleanStuckMetaTransactionsResponse ¶
type CleanStuckMetaTransactionsResponse struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // contains filtered or unexported fields }
func (*CleanStuckMetaTransactionsResponse) Descriptor
deprecated
func (*CleanStuckMetaTransactionsResponse) Descriptor() ([]byte, []int)
Deprecated: Use CleanStuckMetaTransactionsResponse.ProtoReflect.Descriptor instead.
func (*CleanStuckMetaTransactionsResponse) GetId ¶
func (x *CleanStuckMetaTransactionsResponse) GetId() string
func (*CleanStuckMetaTransactionsResponse) ProtoMessage ¶
func (*CleanStuckMetaTransactionsResponse) ProtoMessage()
func (*CleanStuckMetaTransactionsResponse) ProtoReflect ¶
func (x *CleanStuckMetaTransactionsResponse) ProtoReflect() protoreflect.Message
func (*CleanStuckMetaTransactionsResponse) Reset ¶
func (x *CleanStuckMetaTransactionsResponse) Reset()
func (*CleanStuckMetaTransactionsResponse) String ¶
func (x *CleanStuckMetaTransactionsResponse) String() string
type MetaTransactionServiceClient ¶
type MetaTransactionServiceClient interface {
CleanStuckMetaTransactions(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*CleanStuckMetaTransactionsResponse, error)
}
MetaTransactionServiceClient is the client API for MetaTransactionService 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.
func NewMetaTransactionServiceClient ¶
func NewMetaTransactionServiceClient(cc grpc.ClientConnInterface) MetaTransactionServiceClient
type MetaTransactionServiceServer ¶
type MetaTransactionServiceServer interface { CleanStuckMetaTransactions(context.Context, *emptypb.Empty) (*CleanStuckMetaTransactionsResponse, error) // contains filtered or unexported methods }
MetaTransactionServiceServer is the server API for MetaTransactionService service. All implementations must embed UnimplementedMetaTransactionServiceServer for forward compatibility
type UnimplementedMetaTransactionServiceServer ¶
type UnimplementedMetaTransactionServiceServer struct { }
UnimplementedMetaTransactionServiceServer must be embedded to have forward compatible implementations.
func (UnimplementedMetaTransactionServiceServer) CleanStuckMetaTransactions ¶
func (UnimplementedMetaTransactionServiceServer) CleanStuckMetaTransactions(context.Context, *emptypb.Empty) (*CleanStuckMetaTransactionsResponse, error)
type UnsafeMetaTransactionServiceServer ¶
type UnsafeMetaTransactionServiceServer interface {
// contains filtered or unexported methods
}
UnsafeMetaTransactionServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to MetaTransactionServiceServer will result in compilation errors.