Does the zone transfer. @param handler The callback object that handles the zone transfer data. @throws IOException The zone transfer failed to due an IO problem. @throws ZoneTransferException The zone transfer failed to due a problem with the zone transfer itself.
(ZoneTransferHandler handler)
| 583 | * with the zone transfer itself. |
| 584 | */ |
| 585 | public void |
| 586 | run(ZoneTransferHandler handler) throws IOException, ZoneTransferException { |
| 587 | this.handler = handler; |
| 588 | try { |
| 589 | openConnection(); |
| 590 | doxfr(); |
| 591 | } |
| 592 | finally { |
| 593 | closeConnection(); |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * Does the zone transfer. |
no test coverage detected