()
| 286 | } |
| 287 | |
| 288 | @Override |
| 289 | public void update() { |
| 290 | super.update(); |
| 291 | if (!canStartTransfer() ||isTransferring()) { |
| 292 | return; // nothing to transfer or is currently transferring |
| 293 | } |
| 294 | |
| 295 | // try messages that could be delivered to final recipient |
| 296 | if (exchangeDeliverableMessages() != null) { |
| 297 | return; |
| 298 | } |
| 299 | |
| 300 | tryOtherMessages(); |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Returns the message delivery cost between two hosts from this host's |
nothing calls this directly
no test coverage detected