示例#1
0
 public void send_getRowsWithColumnsTs(byte[] tableName, List<byte[]> rows, List<byte[]> columns, long timestamp)
 {
     this.oprot_.WriteMessageBegin(new TMessage("getRowsWithColumnsTs", TMessageType.Call, this.seqid_));
     var args = new getRowsWithColumnsTs_args();
     args.TableName = tableName;
     args.Rows = rows;
     args.Columns = columns;
     args.Timestamp = timestamp;
     args.Write(this.oprot_);
     this.oprot_.WriteMessageEnd();
     this.oprot_.Transport.Flush();
 }
示例#2
0
 public void send_getRowsWithColumnsTs(byte[] tableName, List<byte[]> rows, List<byte[]> columns, long timestamp, Dictionary<byte[], byte[]> attributes)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("getRowsWithColumnsTs", TMessageType.Call, seqid_));
   getRowsWithColumnsTs_args args = new getRowsWithColumnsTs_args();
   args.TableName = tableName;
   args.Rows = rows;
   args.Columns = columns;
   args.Timestamp = timestamp;
   args.Attributes = attributes;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }