Example #1
0
 public void SetItemListingResult_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     SetItemListingResult_args args = new SetItemListingResult_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     SetItemListingResult_result result = new SetItemListingResult_result();
     try {
       result.Success = iface_.SetItemListingResult(args.Request);
     } catch (CBT.GEP.Thrift.Common.ThriftException te) {
       result.Te = te;
     }
     oprot.WriteMessageBegin(new TMessage("SetItemListingResult", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
Example #2
0
 public void send_SetItemListingResult(SetItemListingResultRequest Request)
 {
     oprot_.WriteMessageBegin(new TMessage("SetItemListingResult", TMessageType.Call, seqid_));
     SetItemListingResult_args args = new SetItemListingResult_args();
     args.Request = Request;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }