| 1388 | |
| 1389 | public: |
| 1390 | inline TWrite(TData& data, const TString& compressionScheme, TIntrusivePtr<TSslServerIOStream> io, TServer* server, const TString& headers, int httpCode) |
| 1391 | : CompressionScheme_(compressionScheme) |
| 1392 | , IO_(io) |
| 1393 | , Server_(server) |
| 1394 | , Error_(TMaybe<IRequest::TResponseError>()) |
| 1395 | , Headers_(headers) |
| 1396 | , HttpCode_(httpCode) |
| 1397 | { |
| 1398 | swap(data); |
| 1399 | } |
| 1400 | |
| 1401 | inline TWrite(TData& data, const TString& compressionScheme, TIntrusivePtr<TSslServerIOStream> io, TServer* server, IRequest::TResponseError error, const TString& headers) |
| 1402 | : CompressionScheme_(compressionScheme) |