(ObjectInput in)
| 77 | } |
| 78 | |
| 79 | @Override |
| 80 | public void readExternal(ObjectInput in) throws IOException { |
| 81 | int length = in.readInt(); |
| 82 | message = new byte[length]; |
| 83 | in.readFully(message); |
| 84 | } |
| 85 | |
| 86 | @Override |
| 87 | public void writeExternal(ObjectOutput out) throws IOException { |