コード例 #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 プロジェクト: acesir/hdfs-daemon
 public void send_scannerOpenWithScan(byte[] tableName, TScan scan, Dictionary<byte[], byte[]> attributes)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("scannerOpenWithScan", TMessageType.Call, seqid_));
   scannerOpenWithScan_args args = new scannerOpenWithScan_args();
   args.TableName = tableName;
   args.Scan = scan;
   args.Attributes = attributes;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }