@Override public void fromData(DataInput in) throws IOException, ClassNotFoundException { super.fromData(in); this.attributeCode = in.readByte(); this.newValue = in.readInt(); this.cacheId = in.readInt(); }
@Override public void toData(DataOutput out) throws IOException { super.toData(out); out.writeByte(this.attributeCode); out.writeInt(this.newValue); out.writeInt(this.cacheId); }
@Override public void fromData(DataInput in) throws IOException, ClassNotFoundException { super.fromData(in); int i = in.readInt(); GemFireHealth.Health oHC = (GemFireHealth.Health) DataSerializer.readObject(in); init_(i, oHC); }
@Override public void toData(DataOutput out) throws IOException { super.toData(out); out.writeInt(this.id); DataSerializer.writeObject(this.healthCode, out); }
@Override public void fromData(DataInput in) throws IOException, ClassNotFoundException { super.fromData(in); this.id = in.readInt(); }
@Override public void toData(DataOutput out) throws IOException { super.toData(out); out.writeInt(this.id); }