| 1106 | } |
| 1107 | |
| 1108 | void HTTPHandler::Output::finalize() |
| 1109 | { |
| 1110 | if (finalized) |
| 1111 | return; |
| 1112 | finalized = true; |
| 1113 | |
| 1114 | if (hasDelayed()) |
| 1115 | pushDelayedResults(); |
| 1116 | |
| 1117 | if (out_delayed_and_compressed_holder) |
| 1118 | out_delayed_and_compressed_holder->finalize(); |
| 1119 | if (out_compressed_holder) |
| 1120 | out_compressed_holder->finalize(); |
| 1121 | if (wrap_compressed_holder) |
| 1122 | wrap_compressed_holder->finalize(); |
| 1123 | if (out_holder) |
| 1124 | out_holder->finalize(); |
| 1125 | } |
| 1126 | |
| 1127 | void HTTPHandler::Output::cancel() |
| 1128 | { |
no outgoing calls