Document more classes

This commit is contained in:
Matias Fontanini
2016-06-12 20:14:40 -07:00
parent 9751acd8df
commit a055768f5a
13 changed files with 400 additions and 7 deletions

View File

@@ -56,6 +56,10 @@ string Topic::get_name() const {
return rd_kafka_topic_name(handle_.get());
}
bool Topic::is_partition_available(int partition) const {
return rd_kafka_topic_partition_available(handle_.get(), partition);
}
rd_kafka_topic_t* Topic::get_handle() const {
return handle_.get();
}