Ejemplo n.º 1
0
Archivo: C4.cs Proyecto: cosh/C4
 public void TombstoneColumn_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   TombstoneColumn_args args = new TombstoneColumn_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   TombstoneColumn_result result = new TombstoneColumn_result();
   try {
     iface_.TombstoneColumn(args.RowId, args.ColumnId);
   } catch (InvalidRequestException ire) {
     result.Ire = ire;
   }
   oprot.WriteMessageBegin(new TMessage("TombstoneColumn", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
Ejemplo n.º 2
0
Archivo: C4.cs Proyecto: cosh/C4
 public void send_TombstoneColumn(long rowId, short columnId)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("TombstoneColumn", TMessageType.Call, seqid_));
   TombstoneColumn_args args = new TombstoneColumn_args();
   args.RowId = rowId;
   args.ColumnId = columnId;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }