public void send_scannerOpenWithScan(byte[] tableName, TScan scan) { this.oprot_.WriteMessageBegin(new TMessage("scannerOpenWithScan", TMessageType.Call, this.seqid_)); var args = new scannerOpenWithScan_args(); args.TableName = tableName; args.Scan = scan; args.Write(this.oprot_); this.oprot_.WriteMessageEnd(); this.oprot_.Transport.Flush(); }
public int scannerOpenWithScan(byte[] tableName, TScan scan) { this.send_scannerOpenWithScan(tableName, scan); return this.recv_scannerOpenWithScan(); }