| 38 | Consumer::~Consumer() {} |
| 39 | |
| 40 | phxqueue::comm::RetCode |
| 41 | Consumer::UncompressBuffer(const string &buffer, const int buffer_type, |
| 42 | string &uncompressed_buffer) { |
| 43 | uncompressed_buffer = buffer; |
| 44 | return phxqueue::comm::RetCode::RET_OK; |
| 45 | } |
| 46 | |
| 47 | void Consumer::CompressBuffer(const string &buffer, string &compressed_buffer, |
| 48 | const int buffer_type) { |
nothing calls this directly
no outgoing calls
no test coverage detected