示例#1
0
      public void read(org.apache.thrift.protocol.TProtocol iprot, sayHello_args struct)
          throws org.apache.thrift.TException {
        org.apache.thrift.protocol.TField schemeField;
        iprot.readStructBegin();
        while (true) {
          schemeField = iprot.readFieldBegin();
          if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
            break;
          }
          switch (schemeField.id) {
            case 1: // NAME
              if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
                struct.name = iprot.readString();
                struct.setNameIsSet(true);
              } else {
                org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
              }
              break;
            default:
              org.apache.thrift.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();
      }
示例#2
0
 @Override
 public void read(org.apache.thrift.protocol.TProtocol prot, sayHello_args struct)
     throws org.apache.thrift.TException {
   TTupleProtocol iprot = (TTupleProtocol) prot;
   BitSet incoming = iprot.readBitSet(1);
   if (incoming.get(0)) {
     struct.name = iprot.readString();
     struct.setNameIsSet(true);
   }
 }
示例#3
0
 public void write_args(org.apache.thrift.protocol.TProtocol prot)
     throws org.apache.thrift.TException {
   prot.writeMessageBegin(
       new org.apache.thrift.protocol.TMessage(
           "sayHello", org.apache.thrift.protocol.TMessageType.CALL, 0));
   sayHello_args args = new sayHello_args();
   args.setName(name);
   args.write(prot);
   prot.writeMessageEnd();
 }
示例#4
0
 @Override
 public void write(org.apache.thrift.protocol.TProtocol prot, sayHello_args struct)
     throws org.apache.thrift.TException {
   TTupleProtocol oprot = (TTupleProtocol) prot;
   BitSet optionals = new BitSet();
   if (struct.isSetName()) {
     optionals.set(0);
   }
   oprot.writeBitSet(optionals, 1);
   if (struct.isSetName()) {
     oprot.writeString(struct.name);
   }
 }
示例#5
0
    @Override
    public int compareTo(sayHello_args other) {
      if (!getClass().equals(other.getClass())) {
        return getClass().getName().compareTo(other.getClass().getName());
      }

      int lastComparison = 0;

      lastComparison = Boolean.valueOf(isSetName()).compareTo(other.isSetName());
      if (lastComparison != 0) {
        return lastComparison;
      }
      if (isSetName()) {
        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.name, other.name);
        if (lastComparison != 0) {
          return lastComparison;
        }
      }
      return 0;
    }
示例#6
0
    public boolean equals(sayHello_args that) {
      if (that == null) return false;

      boolean this_present_name = true && this.isSetName();
      boolean that_present_name = true && that.isSetName();
      if (this_present_name || that_present_name) {
        if (!(this_present_name && that_present_name)) return false;
        if (!this.name.equals(that.name)) return false;
      }

      return true;
    }
示例#7
0
      public void write(org.apache.thrift.protocol.TProtocol oprot, sayHello_args struct)
          throws org.apache.thrift.TException {
        struct.validate();

        oprot.writeStructBegin(STRUCT_DESC);
        if (struct.name != null) {
          oprot.writeFieldBegin(NAME_FIELD_DESC);
          oprot.writeString(struct.name);
          oprot.writeFieldEnd();
        }
        oprot.writeFieldStop();
        oprot.writeStructEnd();
      }
示例#8
0
 public void send_sayHello(String name) throws org.apache.thrift.TException {
   sayHello_args args = new sayHello_args();
   args.setName(name);
   sendBase("sayHello", args);
 }
示例#9
0
 /** Performs a deep copy on <i>other</i>. */
 public sayHello_args(sayHello_args other) {
   if (other.isSetName()) {
     this.name = other.name;
   }
 }