(DataOutput out)
| 67 | } |
| 68 | |
| 69 | @Override |
| 70 | public void write(DataOutput out) throws IOException { |
| 71 | t.write(out); |
| 72 | out.writeInt(targetOps.size()); |
| 73 | for (OperatorKey target : targetOps) { |
| 74 | // Ideally I should be able to call target.write(out). |
| 75 | // Since it doesn't support it yet handling it here |
| 76 | out.writeInt(target.scope.length()); |
| 77 | out.writeBytes(target.scope); |
| 78 | out.writeLong(target.id); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | @Override |
| 83 | public void readFields(DataInput in) throws IOException { |
nothing calls this directly
no test coverage detected