상속: TBase
예제 #1
0
파일: Hbase.cs 프로젝트: nordbergm/HBaseNet
 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();
 }
예제 #2
0
파일: Hbase.cs 프로젝트: nordbergm/HBaseNet
 public int scannerOpenWithScan(byte[] tableName, TScan scan)
 {
     this.send_scannerOpenWithScan(tableName, scan);
     return this.recv_scannerOpenWithScan();
 }