@Override
 protected void readInternal(ObjectDataInput in) throws IOException {
   super.readInternal(in);
   lockOwner = in.readUTF();
   lockThreadId = in.readLong();
 }
Exemplo n.º 2
0
 protected void readInternal(ObjectDataInput in) throws IOException {
   super.readInternal(in);
   unlockKey = in.readBoolean();
 }
 @Override
 protected void writeInternal(ObjectDataOutput out) throws IOException {
   super.writeInternal(out);
   out.writeUTF(lockOwner);
   out.writeLong(lockThreadId);
 }
Exemplo n.º 4
0
 protected void writeInternal(ObjectDataOutput out) throws IOException {
   super.writeInternal(out);
   out.writeBoolean(unlockKey);
 }