public void send_scannerOpenWithStopTs(byte[] tableName, byte[] startRow, byte[] stopRow, List<byte[]> columns, long timestamp) { this.oprot_.WriteMessageBegin(new TMessage("scannerOpenWithStopTs", TMessageType.Call, this.seqid_)); var args = new scannerOpenWithStopTs_args(); args.TableName = tableName; args.StartRow = startRow; args.StopRow = stopRow; args.Columns = columns; args.Timestamp = timestamp; args.Write(this.oprot_); this.oprot_.WriteMessageEnd(); this.oprot_.Transport.Flush(); }
public void send_scannerOpenWithStopTs(byte[] tableName, byte[] startRow, byte[] stopRow, List<byte[]> columns, long timestamp, Dictionary<byte[], byte[]> attributes) #endif { oprot_.WriteMessageBegin(new TMessage("scannerOpenWithStopTs", TMessageType.Call, seqid_)); scannerOpenWithStopTs_args args = new scannerOpenWithStopTs_args(); args.TableName = tableName; args.StartRow = startRow; args.StopRow = stopRow; 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 }