We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
the only way I can find now is to set the handle_ variable in Message and release it manually
Sorry, something went wrong.
How to create cppkafka::Message safety? Some times i get "Bus error" creating Message from make_on_owning static function. Example:
`
std::string payload("message from string"); rd_kafka_message_t* l_struct_msg = new rd_kafka_message_t; l_struct_msg->err = rd_kafka_resp_err_t::RD_KAFKA_RESP_ERR_NO_ERROR; l_struct_msg->payload = &payload[0]; l_struct_msg->len = payload.size(); l_struct_msg->key_len = 0;
cppkafka::Message cppkafka_message; cppkafka_message = cppkafka::Message::make_non_owning(l_struct_msg);
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: