procedure.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Copyright (C) 2016 The GoHBase Authors. All rights reserved.
  2. // This file is part of GoHBase.
  3. // Use of this source code is governed by the Apache License 2.0
  4. // that can be found in the COPYING file.
  5. package hrpc
  6. import (
  7. "context"
  8. "github.com/golang/protobuf/proto"
  9. "github.com/tsuna/gohbase/pb"
  10. )
  11. // GetProcedureState represents a call to HBase to check status of a procedure
  12. type GetProcedureState struct {
  13. base
  14. procID uint64
  15. }
  16. // NewGetProcedureState creates a new GetProcedureState request. For use by the admin client.
  17. func NewGetProcedureState(ctx context.Context, procID uint64) *GetProcedureState {
  18. return &GetProcedureState{
  19. base: base{
  20. ctx: ctx,
  21. resultch: make(chan RPCResult, 1),
  22. },
  23. procID: procID,
  24. }
  25. }
  26. // Name returns the name of this RPC call.
  27. func (ps *GetProcedureState) Name() string {
  28. return "getProcedureResult"
  29. }
  30. // ToProto converts the RPC into a protobuf message
  31. func (ps *GetProcedureState) ToProto() proto.Message {
  32. return &pb.GetProcedureResultRequest{ProcId: &ps.procID}
  33. }
  34. // NewResponse creates an empty protobuf message to read the response of this RPC.
  35. func (ps *GetProcedureState) NewResponse() proto.Message {
  36. return &pb.GetProcedureResultResponse{}
  37. }