public void calculateSimPopulationFitness_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                calculateSimPopulationFitness_args args = new calculateSimPopulationFitness_args();

                args.Read(iprot);
                iprot.ReadMessageEnd();
                calculateSimPopulationFitness_result result = new calculateSimPopulationFitness_result();

                result.Success = iface_.calculateSimPopulationFitness(args.PopulationInfo);
                oprot.WriteMessageBegin(new TMessage("calculateSimPopulationFitness", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }
            public CPopulationFitness recv_calculateSimPopulationFitness()
            {
                TMessage msg = iprot_.ReadMessageBegin();

                if (msg.Type == TMessageType.Exception)
                {
                    TApplicationException x = TApplicationException.Read(iprot_);
                    iprot_.ReadMessageEnd();
                    throw x;
                }
                calculateSimPopulationFitness_result result = new calculateSimPopulationFitness_result();

                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success)
                {
                    return(result.Success);
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "calculateSimPopulationFitness failed: unknown result");
            }
 public void calculateSimPopulationFitness_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   calculateSimPopulationFitness_args args = new calculateSimPopulationFitness_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   calculateSimPopulationFitness_result result = new calculateSimPopulationFitness_result();
   result.Success = iface_.calculateSimPopulationFitness(args.PopulationInfo);
   oprot.WriteMessageBegin(new TMessage("calculateSimPopulationFitness", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
 public CPopulationFitness recv_calculateSimPopulationFitness()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   calculateSimPopulationFitness_result result = new calculateSimPopulationFitness_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "calculateSimPopulationFitness failed: unknown result");
 }