12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // Copyright (C) 2015 The GoHBase Authors. All rights reserved.
- // This file is part of GoHBase.
- // Use of this source code is governed by the Apache License 2.0
- // that can be found in the COPYING file.
- package hrpc
- import (
- "context"
- "github.com/golang/protobuf/proto"
- "github.com/tsuna/gohbase/pb"
- )
- // DisableTable represents a DisableTable HBase call
- type DisableTable struct {
- base
- }
- // NewDisableTable creates a new DisableTable request that will disable the
- // given table in HBase. For use by the admin client.
- func NewDisableTable(ctx context.Context, table []byte) *DisableTable {
- return &DisableTable{
- base{
- table: table,
- ctx: ctx,
- resultch: make(chan RPCResult, 1),
- },
- }
- }
- // Name returns the name of this RPC call.
- func (dt *DisableTable) Name() string {
- return "DisableTable"
- }
- // ToProto converts the RPC into a protobuf message
- func (dt *DisableTable) ToProto() proto.Message {
- return &pb.DisableTableRequest{
- TableName: &pb.TableName{
- // TODO: handle namespaces
- Namespace: []byte("default"),
- Qualifier: dt.table,
- },
- }
- }
- // NewResponse creates an empty protobuf message to read the response of this
- // RPC.
- func (dt *DisableTable) NewResponse() proto.Message {
- return &pb.DisableTableResponse{}
- }
|