Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var Broadcast_ServiceDesc = grpc.ServiceDesc{ ServiceName: "broadcast_pb.Broadcast", HandlerType: (*BroadcastServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "BroadcastTx", Handler: _Broadcast_BroadcastTx_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "broadcast.proto", }
Broadcast_ServiceDesc is the grpc.ServiceDesc for Broadcast service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
var File_broadcast_proto protoreflect.FileDescriptor
Functions ¶
func RegisterBroadcastServer ¶
func RegisterBroadcastServer(s grpc.ServiceRegistrar, srv BroadcastServer)
Types ¶
type BroadcastClient ¶
type BroadcastClient interface {
BroadcastTx(ctx context.Context, in *BroadcastRequest, opts ...grpc.CallOption) (*BroadcastReply, error)
}
BroadcastClient is the client API for Broadcast 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 NewBroadcastClient ¶
func NewBroadcastClient(cc grpc.ClientConnInterface) BroadcastClient
type BroadcastReply ¶
type BroadcastReply struct {
// contains filtered or unexported fields
}
func (*BroadcastReply) Descriptor
deprecated
func (*BroadcastReply) Descriptor() ([]byte, []int)
Deprecated: Use BroadcastReply.ProtoReflect.Descriptor instead.
func (*BroadcastReply) ProtoMessage ¶
func (*BroadcastReply) ProtoMessage()
func (*BroadcastReply) ProtoReflect ¶
func (x *BroadcastReply) ProtoReflect() protoreflect.Message
func (*BroadcastReply) Reset ¶
func (x *BroadcastReply) Reset()
func (*BroadcastReply) String ¶
func (x *BroadcastReply) String() string
type BroadcastRequest ¶
type BroadcastRequest struct { Raw []byte `protobuf:"bytes,1,opt,name=raw,proto3" json:"raw,omitempty"` // contains filtered or unexported fields }
func (*BroadcastRequest) Descriptor
deprecated
func (*BroadcastRequest) Descriptor() ([]byte, []int)
Deprecated: Use BroadcastRequest.ProtoReflect.Descriptor instead.
func (*BroadcastRequest) GetRaw ¶
func (x *BroadcastRequest) GetRaw() []byte
func (*BroadcastRequest) ProtoMessage ¶
func (*BroadcastRequest) ProtoMessage()
func (*BroadcastRequest) ProtoReflect ¶
func (x *BroadcastRequest) ProtoReflect() protoreflect.Message
func (*BroadcastRequest) Reset ¶
func (x *BroadcastRequest) Reset()
func (*BroadcastRequest) String ¶
func (x *BroadcastRequest) String() string
type BroadcastServer ¶
type BroadcastServer interface { BroadcastTx(context.Context, *BroadcastRequest) (*BroadcastReply, error) // contains filtered or unexported methods }
BroadcastServer is the server API for Broadcast service. All implementations must embed UnimplementedBroadcastServer for forward compatibility
type UnimplementedBroadcastServer ¶
type UnimplementedBroadcastServer struct { }
UnimplementedBroadcastServer must be embedded to have forward compatible implementations.
func (UnimplementedBroadcastServer) BroadcastTx ¶
func (UnimplementedBroadcastServer) BroadcastTx(context.Context, *BroadcastRequest) (*BroadcastReply, error)
type UnsafeBroadcastServer ¶
type UnsafeBroadcastServer interface {
// contains filtered or unexported methods
}
UnsafeBroadcastServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to BroadcastServer will result in compilation errors.