You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
461 B
22 lines
461 B
package hbase
|
|
|
|
import (
|
|
"github.com/pingcap/go-hbase/proto"
|
|
pb "github.com/golang/protobuf/proto"
|
|
)
|
|
|
|
type CoprocessorServiceCall struct {
|
|
Row []byte
|
|
ServiceName string
|
|
MethodName string
|
|
RequestParam []byte
|
|
}
|
|
|
|
func (c *CoprocessorServiceCall) ToProto() pb.Message {
|
|
return &proto.CoprocessorServiceCall{
|
|
Row: c.Row,
|
|
ServiceName: pb.String(c.ServiceName),
|
|
MethodName: pb.String(c.MethodName),
|
|
Request: c.RequestParam,
|
|
}
|
|
}
|
|
|