Method to call after writing the HTTP response to the wire.
()
| 683 | * Method to call after writing the HTTP response to the wire. |
| 684 | */ |
| 685 | @Override |
| 686 | public void done() { |
| 687 | final int processing_time = processingTimeMillis(); |
| 688 | httplatency.add(processing_time); |
| 689 | logInfo("HTTP " + request().getUri() + " done in " + processing_time + "ms"); |
| 690 | deferred.callback(null); |
| 691 | } |
| 692 | |
| 693 | /** |
| 694 | * Sends an HTTP reply to the client. |
no test coverage detected