Example #1
0
void WriteBuffer::clear() {
  ctx_.clear();
  reply_.clear();
  um_backing_msg_cleanup(&umMsg_);
  um_backing_msg_init(&umMsg_);
  mc_ascii_response_buf_cleanup(&asciiResponse_);
  mc_ascii_response_buf_init(&asciiResponse_);
}
Example #2
0
McServerTransaction::~McServerTransaction() {
    session_->onTransactionCompleted(isSubRequest_);

    um_backing_msg_cleanup(&umMsg_);
    mc_ascii_response_buf_cleanup(&asciiResponse_);
}
Example #3
0
void AsciiSerializedReply::clear() {
  mc_ascii_response_buf_cleanup(&asciiResponse_);
  mc_ascii_response_buf_init(&asciiResponse_);
}
Example #4
0
AsciiSerializedReply::~AsciiSerializedReply() {
  mc_ascii_response_buf_cleanup(&asciiResponse_);
}