status.go 854 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package hrpc
  2. import (
  3. "context"
  4. "github.com/golang/protobuf/proto"
  5. "github.com/tsuna/gohbase/pb"
  6. )
  7. // ClusterStatus to represent a cluster status request
  8. type ClusterStatus struct {
  9. base
  10. }
  11. // NewClusterStatus creates a new ClusterStatusStruct with default fields
  12. func NewClusterStatus() *ClusterStatus {
  13. return &ClusterStatus{
  14. base{
  15. ctx: context.Background(),
  16. table: []byte{},
  17. resultch: make(chan RPCResult, 1),
  18. },
  19. }
  20. }
  21. // Name returns the name of the rpc function
  22. func (c *ClusterStatus) Name() string {
  23. return "GetClusterStatus"
  24. }
  25. // ToProto returns the Protobuf message to be sent
  26. func (c *ClusterStatus) ToProto() proto.Message {
  27. return &pb.GetClusterStatusRequest{}
  28. }
  29. // NewResponse returns the empty protobuf response
  30. func (c *ClusterStatus) NewResponse() proto.Message {
  31. return &pb.GetClusterStatusResponse{}
  32. }