public void system_add_column_family_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     system_add_column_family_args args = new system_add_column_family_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     system_add_column_family_result result = new system_add_column_family_result();
     try {
       result.Success = iface_.system_add_column_family(args.Cf_def);
     } catch (InvalidRequestException ire) {
       result.Ire = ire;
     } catch (SchemaDisagreementException sde) {
       result.Sde = sde;
     }
     oprot.WriteMessageBegin(new TMessage("system_add_column_family", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
 public string recv_system_add_column_family()
 {
     TMessage msg = iprot_.ReadMessageBegin();
     if (msg.Type == TMessageType.Exception) {
       TApplicationException x = TApplicationException.Read(iprot_);
       iprot_.ReadMessageEnd();
       throw x;
     }
     system_add_column_family_result result = new system_add_column_family_result();
     result.Read(iprot_);
     iprot_.ReadMessageEnd();
     if (result.__isset.success) {
       return result.Success;
     }
     if (result.__isset.ire) {
       throw result.Ire;
     }
     if (result.__isset.sde) {
       throw result.Sde;
     }
     throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "system_add_column_family failed: unknown result");
 }