protected void writeInternal(ObjectDataOutput out) throws IOException {
   super.writeInternal(out);
   out.writeInt(opList.size());
   for (Operation op : opList) {
     out.writeObject(op);
   }
 }