@Override
 public void read(libthrift091.protocol.TProtocol prot, ListQueueResponse struct)
     throws libthrift091.TException {
   TTupleProtocol iprot = (TTupleProtocol) prot;
   {
     libthrift091.protocol.TList _list15 =
         new libthrift091.protocol.TList(libthrift091.protocol.TType.STRING, iprot.readI32());
     struct.queueName = new ArrayList<String>(_list15.size);
     String _elem16;
     for (int _i17 = 0; _i17 < _list15.size; ++_i17) {
       _elem16 = iprot.readString();
       struct.queueName.add(_elem16);
     }
   }
   struct.setQueueNameIsSet(true);
 }
    public void read(libthrift091.protocol.TProtocol iprot, ListQueueResponse struct)
        throws libthrift091.TException {
      libthrift091.protocol.TField schemeField;
      iprot.readStructBegin();
      while (true) {
        schemeField = iprot.readFieldBegin();
        if (schemeField.type == libthrift091.protocol.TType.STOP) {
          break;
        }
        switch (schemeField.id) {
          case 1: // QUEUE_NAME
            if (schemeField.type == libthrift091.protocol.TType.LIST) {
              {
                libthrift091.protocol.TList _list10 = iprot.readListBegin();
                struct.queueName = new ArrayList<String>(_list10.size);
                String _elem11;
                for (int _i12 = 0; _i12 < _list10.size; ++_i12) {
                  _elem11 = iprot.readString();
                  struct.queueName.add(_elem11);
                }
                iprot.readListEnd();
              }
              struct.setQueueNameIsSet(true);
            } else {
              libthrift091.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          default:
            libthrift091.protocol.TProtocolUtil.skip(iprot, schemeField.type);
        }
        iprot.readFieldEnd();
      }
      iprot.readStructEnd();

      // check for required fields of primitive type, which can't be checked in the validate method
      struct.validate();
    }