Ejemplo n.º 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_);
}
Ejemplo n.º 2
0
McServerTransaction::~McServerTransaction() {
    session_->onTransactionCompleted(isSubRequest_);

    um_backing_msg_cleanup(&umMsg_);
    mc_ascii_response_buf_cleanup(&asciiResponse_);
}
Ejemplo n.º 3
0
void AsciiSerializedReply::clear() {
  mc_ascii_response_buf_cleanup(&asciiResponse_);
  mc_ascii_response_buf_init(&asciiResponse_);
}
Ejemplo n.º 4
0
AsciiSerializedReply::~AsciiSerializedReply() {
  mc_ascii_response_buf_cleanup(&asciiResponse_);
}