public void TombstoneRow_Process(int seqid, TProtocol iprot, TProtocol oprot) { TombstoneRow_args args = new TombstoneRow_args(); args.Read(iprot); iprot.ReadMessageEnd(); TombstoneRow_result result = new TombstoneRow_result(); try { iface_.TombstoneRow(args.RowId); } catch (InvalidRequestException ire) { result.Ire = ire; } oprot.WriteMessageBegin(new TMessage("TombstoneRow", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }
public void recv_TombstoneRow() { TMessage msg = iprot_.ReadMessageBegin(); if (msg.Type == TMessageType.Exception) { TApplicationException x = TApplicationException.Read(iprot_); iprot_.ReadMessageEnd(); throw x; } TombstoneRow_result result = new TombstoneRow_result(); result.Read(iprot_); iprot_.ReadMessageEnd(); if (result.__isset.ire) { throw result.Ire; } return; }