/** * Deserialize * * @param in the input * @throws IOException */ @Override public void readFrom(StreamInput in) throws IOException { super.readFrom(in); isPruned = in.readBoolean(); size = in.readVInt(); termsEncoding = TermsByQueryRequest.TermsEncoding.values()[in.readVInt()]; encodedTerms = in.readBytesRef(); }
/** * Serialize * * @param out the output * @throws IOException */ @Override public void writeTo(StreamOutput out) throws IOException { super.writeTo(out); // Encode flag out.writeBoolean(isPruned); // Encode size out.writeVInt(size); // Encode type of encoding out.writeVInt(termsEncoding.ordinal()); // Encode terms out.writeBytesRef(encodedTerms); // Release terms encodedTerms = null; }