| 1097 | } |
| 1098 | |
| 1099 | THttpConnRef THttpConn::Create(TIOService& srv) { |
| 1100 | if (HttpConnManager()->IsShutdown()) { |
| 1101 | throw yexception() << "can't create connection with shutdowned service"; |
| 1102 | } |
| 1103 | |
| 1104 | return new THttpConn(srv); |
| 1105 | } |
| 1106 | |
| 1107 | void THttpConn::PutSelfToCache() { |
| 1108 | THttpConnRef c(this); |
no test coverage detected