| 25 | #endif |
| 26 | |
| 27 | RequestContext ClientManager::createRequest(bool isOneway) |
| 28 | { |
| 29 | // Create codec to read and write the request. |
| 30 | Codec *codec = createBufferAndCodec(); |
| 31 | |
| 32 | return RequestContext(++m_sequence, codec, isOneway); |
| 33 | } |
| 34 | |
| 35 | void ClientManager::performRequest(RequestContext &request) |
| 36 | { |
no test coverage detected